Do not use this resource. Replaced by /data/WLCCPUUtilizations and /data/WLCMemoryUtilizations.
Represents the latest CPU and memory utilization collected from a WLAN controller.
Since Product Version: 1.2
Resource URL
/webacs/api/v1/data/WLCUtilizationsResponse Parameters
Type | Attribute Name | Description |
---|---|---|
long |
collectionTime |
The time on the server when the collection was performed, as milliseconds from the Unix epoch |
Integer |
cpuUtilization |
The average utilization of all CPUs in the controller |
String |
instanceUuid |
This is a uuid for this instance. |
String |
ipAddress |
WLAN controller IP address |
Integer |
memoryFree |
The total amount of free memory in all controller memory pools |
Integer |
memoryUsed |
The total amount of used memory in all controller memory pools |
Integer |
memoryUtilization |
Common memory utilization for all controller memory pools |
String |
name |
WLAN controller name |
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 Payload
https://172.25.123.114/webacs/api/v1/data/WLCUtilizations/15
<?xml version="1.0" ?> <queryResponse type="WLCUtilizations" responseType="getEntity" requestUrl="https://172.25.123.114/webacs/api/v1/data/WLCUtilizations/15" rootUrl="https://172.25.123.114/webacs/api/v1/data"> <entity dtoType="wLCUtilizationsDTO" type="WLCUtilizations" url="https://172.25.123.114/webacs/api/v1/data/WLCUtilizations/15"> <wlcUtilizationsDTO displayName="String value" id="15" uuid="String value"> <collectionTime>2</collectionTime> <cpuUtilization>15</cpuUtilization> <ipAddress>String value</ipAddress> <memoryFree>15</memoryFree> <memoryUsed>15</memoryUsed> <memoryUtilization>15</memoryUtilization> <name>String value</name> </wlcUtilizationsDTO> </entity> </queryResponse>
Sample JSON Payload
https://172.25.123.114/webacs/api/v1/data/WLCUtilizations/15.json
{ "queryResponse" : { "@type" : "WLCUtilizations", "@responseType" : "getEntity", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data\/WLCUtilizations\/15", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data", "entity" : { "@dtoType" : "wLCUtilizationsDTO", "@type" : "WLCUtilizations", "@url" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data\/WLCUtilizations\/15", "wlcUtilizationsDTO" : { "@displayName" : "String value", "@id" : "15", "@uuid" : "String value", "collectionTime" : 2, "cpuUtilization" : 15, "ipAddress" : "String value", "memoryFree" : 15, "memoryUsed" : 15, "memoryUtilization" : 15, "name" : "String value" } } } }