Represents the historical CPU and memory utilization information collected from WLAN controllers in past 24 hours.
Resource URL
/webacs/api/v1/data/HistoricalWLCUtilizationsSince : 1.2
Response Parameters
| Type | Attribute Name | Description |
|---|---|---|
|
long |
collectionTime |
unix binary time on the server when the collection was performed. |
|
int |
cpuUtilization |
|
|
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.116.207/webacs/api/v1/data/HistoricalWLCUtilizations/42
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<queryResponse rootUrl="/webacs/data" requestUrl="https://192.168.116.207/webacs/api/v1/data/HistoricalWLCUtilizations/42" responseType="getEntity">
<entity url="/webacs/data/className/15" type="className" dtoType="historicalWLCUtilizationsDTO_$$_javassist_5959">
<historicalWLCUtilizationsDTO 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.116.207/webacs/api/v1/data/HistoricalWLCUtilizations/42.json
{
"queryResponse" : {
"@rootUrl" : "\/webacs\/data",
"@requestUrl" : "https : \/\/192.168.116.207\/webacs\/api\/v1\/data\/HistoricalWLCUtilizations\/42",
"@responseType" : "getEntity",
"entity" : {
"@url" : "\/webacs\/data\/className\/15",
"@type" : "className",
"@dtoType" : "historicalWLCUtilizationsDTO_$$_javassist_5959",
"historicalWLCUtilizationsDTO" : {
"@id" : "15",
"@displayName" : "String value",
"collectionTime" : 2,
"cpuUtilization" : 1,
"ipAddress" : "String value",
"memoryFree" : 1,
"memoryUsed" : 1,
"memoryUtilization" : 1,
"name" : "String value"
}
}
}
}