Returns the IP addresses of all clients using either all services or the specified service, over the last 24 hours.
Since Product Version: 2.2
Resource URL
/webacs/api/v1/op/apiHealth/callsPerClientRequest Parameters
Type | Attribute Name | Source | Description |
---|---|---|---|
String |
service optional |
query |
The service path. If unspecified, data will be returned for all services. |
Response Parameters
Type | Attribute Name | Description |
---|---|---|
InetAddress |
clientIp |
The client IP address. |
long |
requestCount |
The number of requests this client has made over the given period. |
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Response Payload
https://172.25.123.114/webacs/api/v1/op/apiHealth/callsPerClient
<?xml version="1.0" ?> <mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/"> <apiCallsPerClient> <clientIp> <address>192.168.115.243</address> </clientIp> <requestCount>2</requestCount> </apiCallsPerClient> </mgmtResponse>
Sample JSON Response Payload
https://172.25.123.114/webacs/api/v1/op/apiHealth/callsPerClient.json
{ "mgmtResponse" : { "@responseType" : "operation", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/apiHealth\/callsPerClient", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/", "apiCallsPerClient" : { "clientIp" : { "address" : "192.168.115.243" }, "requestCount" : 2 } } }