Represents the historical memory utilization information collected from WLAN controllers in past 24 hours.
Since Product Version: 3.1
Resource Information
Rate Limiting? |
Yes |
Sorting? |
Yes |
Paging? |
Yes |
Filtering? |
Yes |
Aggregation? |
No |
Response Formats |
xml json |
User Group |
NBI Read |
HTTP Methods |
GET |
DevNet Discussions
Resource URL
/webacs/api/v3/data/HistoricalWLCMemUtilizations UnmodifiedThis resource has not been modified since the previous API version.
Response Parameters
Attribute | Description |
---|---|
collectionTime long |
The time on the server when the collection was performed, as milliseconds from the Unix epoch |
displayName String |
This is the displayName for this instance. |
instanceUuid String |
This is a uuid for this instance. |
ipAddress String |
WLAN controller IP address |
memoryFree int |
The total amount of free memory in all controller memory pools |
Detailed utilization information per each controller memory pool |
|
memoryTotal int |
The total amount of memory in all controller memory pools |
memoryUsed int |
The total amount of used memory in all controller memory pools |
memoryUtilization int |
Common memory utilization for all controller memory pools |
name String |
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://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15
<?xml version="1.0" ?>
<queryResponse type="HistoricalWLCMemUtilizations" responseType="getEntity" requestUrl="https://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15" rootUrl="https://localhost/webacs/api/v3/data">
<entity dtoType="historicalWLCMemUtilizationsDTO" type="HistoricalWLCMemUtilizations" url="https://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15">
<historicalWLCMemUtilizationsDTO 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>
<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>
</historicalWLCMemUtilizationsDTO>
</entity>
</queryResponse>
Sample JSON Payload
https://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15.json
{
"queryResponse" : {
"@type" : "HistoricalWLCMemUtilizations",
"@requestUrl" : "https://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15",
"@responseType" : "getEntity",
"@rootUrl" : "https://localhost/webacs/api/v3/data",
"entity" : [ {
"@dtoType" : "historicalWLCMemUtilizationsDTO",
"@type" : "HistoricalWLCMemUtilizations",
"@url" : "https://localhost/webacs/api/v3/data/HistoricalWLCMemUtilizations/15",
"historicalWLCMemUtilizationsDTO" : {
"@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
}, {
"memoryFree" : 1,
"memoryTotal" : 1,
"memoryUsed" : 1,
"memoryUtilization" : 1,
"poolName" : "String value",
"poolType" : 1
} ]
},
"memoryTotal" : 1,
"memoryUsed" : 1,
"memoryUtilization" : 1,
"name" : "String value"
}
} ]
}
}