Represents the historical CPU and memory utilization information collected from WLAN controllers in past 24 hours.
Since Product Version: 1.2
Resource URL
/webacs/api/v1/data/HistoricalWLCUtilizationsResponse Parameters
Type | Attribute Name | Description |
---|---|---|
long |
collectionTime |
unix binary time on the server when the collection was performed. |
int |
cpuUtilization |
|
String |
instanceUuid |
This is a uuid for this instance. |
String |
ipAddress |
Wlan Controller IP address |
int |
memoryFree |
memory free |
int |
memoryUsed |
memory used |
int |
memoryUtilization |
|
String |
name |
Wlan controller name |
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 Payload
https://192.168.115.187/webacs/api/v1/data/HistoricalWLCUtilizations/42
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <queryResponse rootUrl="https://192.168.115.187/webacs/api/v1/data" requestUrl="https://192.168.115.187/webacs/api/v1/data/HistoricalWLCUtilizations/42" responseType="getEntity"> <entity url="https://192.168.115.187/webacs/api/v1/data/HistoricalWLCUtilizations/15" type="HistoricalWLCUtilizations" dtoType="historicalWLCUtilizationsDTO"> <historicalWLCUtilizationsDTO uuid="String value" id="15" displayName="String value"> <collectionTime>2</collectionTime> <cpuUtilization>1</cpuUtilization> <ipAddress>String value</ipAddress> <memoryFree>1</memoryFree> <memoryUsed>1</memoryUsed> <memoryUtilization>1</memoryUtilization> <name>String value</name> </historicalWLCUtilizationsDTO> </entity> </queryResponse>
Sample JSON Payload
https://192.168.115.187/webacs/api/v1/data/HistoricalWLCUtilizations/42.json
{ "queryResponse" : { "@rootUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/data", "@requestUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/data\/HistoricalWLCUtilizations\/42", "@responseType" : "getEntity", "entity" : { "@url" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/data\/HistoricalWLCUtilizations\/15", "@type" : "HistoricalWLCUtilizations", "@dtoType" : "historicalWLCUtilizationsDTO", "historicalWLCUtilizationsDTO" : { "@uuid" : "String value", "@id" : "15", "@displayName" : "String value", "collectionTime" : 2, "cpuUtilization" : 1, "ipAddress" : "String value", "memoryFree" : 1, "memoryUsed" : 1, "memoryUtilization" : 1, "name" : "String value" } } } }