Represents the latest memory utilization collected from a WLAN controller.
Since Product Version: 3.1
Resource URL
/webacs/api/v1/data/WLCMemoryUtilizationsResponse Parameters
Type | Attribute Name | Description |
---|---|---|
long |
collectionTime |
The time on the server when the collection was performed, as milliseconds from the Unix epoch |
String |
instanceUuid |
This is a uuid for this instance. |
String |
ipAddress |
WLAN controller IP address |
int |
memoryFree |
The total amount of free memory in all controller memory pools |
memoryPoolUtilization |
Detailed utilization information per each controller memory pool |
|
int |
memoryTotal |
The total amount of memory in all controller memory pools |
int |
memoryUsed |
The total amount of used memory in all controller memory pools |
int |
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/WLCMemoryUtilizations/15
<?xml version="1.0" ?> <queryResponse type="WLCMemoryUtilizations" responseType="getEntity" requestUrl="https://172.25.123.114/webacs/api/v1/data/WLCMemoryUtilizations/15" rootUrl="https://172.25.123.114/webacs/api/v1/data"> <entity dtoType="wLCMemoryUtilizationsDTO" type="WLCMemoryUtilizations" url="https://172.25.123.114/webacs/api/v1/data/WLCMemoryUtilizations/15"> <wlcMemoryUtilizationsDTO displayName="String value" id="15" uuid="String value"> <collectionTime>2</collectionTime> <ipAddress>String value</ipAddress> <memoryFree>1</memoryFree> <memoryPools> <memoryPool> <memoryFree>1</memoryFree> <memoryTotal>1</memoryTotal> <memoryUsed>1</memoryUsed> <memoryUtilization>1</memoryUtilization> <poolName>String value</poolName> <poolType>1</poolType> </memoryPool> </memoryPools> <memoryTotal>1</memoryTotal> <memoryUsed>1</memoryUsed> <memoryUtilization>1</memoryUtilization> <name>String value</name> </wlcMemoryUtilizationsDTO> </entity> </queryResponse>
Sample JSON Payload
https://172.25.123.114/webacs/api/v1/data/WLCMemoryUtilizations/15.json
{ "queryResponse" : { "@type" : "WLCMemoryUtilizations", "@responseType" : "getEntity", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data\/WLCMemoryUtilizations\/15", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data", "entity" : { "@dtoType" : "wLCMemoryUtilizationsDTO", "@type" : "WLCMemoryUtilizations", "@url" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data\/WLCMemoryUtilizations\/15", "wlcMemoryUtilizationsDTO" : { "@displayName" : "String value", "@id" : "15", "@uuid" : "String value", "collectionTime" : 2, "ipAddress" : "String value", "memoryFree" : 1, "memoryPools" : { "memoryPool" : { "memoryFree" : 1, "memoryTotal" : 1, "memoryUsed" : 1, "memoryUtilization" : 1, "poolName" : "String value", "poolType" : 1 } }, "memoryTotal" : 1, "memoryUsed" : 1, "memoryUtilization" : 1, "name" : "String value" } } } }