Cisco Prime Infrastructure API
Prime Infrastructure API Documentation

GET HistoricalWLCMemUtilizations

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

Unmodified

This 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

ipAddress String

WLAN controller IP address

memoryFree long

The total amount of free memory in all controller memory pools

memoryPoolUtilization MemoryUtilization[]

Detailed utilization information per each controller memory pool

memoryTotal long

The total amount of memory in all controller memory pools

memoryUsed long

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>2</memoryFree>
      <memoryPools>
        <memoryPool>
          <memoryFree>2</memoryFree>
          <memoryTotal>2</memoryTotal>
          <memoryUsed>2</memoryUsed>
          <memoryUtilization>1</memoryUtilization>
          <poolName>String value</poolName>
          <poolType>1</poolType>
        </memoryPool>
        <memoryPool>
          <memoryFree>2</memoryFree>
          <memoryTotal>2</memoryTotal>
          <memoryUsed>2</memoryUsed>
          <memoryUtilization>1</memoryUtilization>
          <poolName>String value</poolName>
          <poolType>1</poolType>
        </memoryPool>
      </memoryPools>
      <memoryTotal>2</memoryTotal>
      <memoryUsed>2</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" : 2,
        "memoryPools" : {
          "memoryPool" : [ {
            "memoryFree" : 2,
            "memoryTotal" : 2,
            "memoryUsed" : 2,
            "memoryUtilization" : 1,
            "poolName" : "String value",
            "poolType" : 1
          }, {
            "memoryFree" : 2,
            "memoryTotal" : 2,
            "memoryUsed" : 2,
            "memoryUtilization" : 1,
            "poolName" : "String value",
            "poolType" : 1
          } ]
        },
        "memoryTotal" : 2,
        "memoryUsed" : 2,
        "memoryUtilization" : 1,
        "name" : "String value"
      }
    } ]
  }
}