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

Group Filtering?

Yes

Aggregation?

No

Response Formats

xml

json

User Group

NBI Read

HTTP Methods

GET

Resource URL

/webacs/api/v3/data/HistoricalWLCMemUtilizations

To filter entities based on device groups, use Group Based Filtering as documented on the Filtering page on the Home page. Example: ?.group=myrouters

Unmodified

This resource has not been modified since the previous API version.

Deprecated

This version has been deprecated. Please use v4.

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 Arrow image 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>
      <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>12</memoryFree>
          <memoryTotal>12</memoryTotal>
          <memoryUsed>12</memoryUsed>
          <memoryUtilization>11</memoryUtilization>
          <poolName>Another string value</poolName>
          <poolType>11</poolType>
        </memoryPool>
      </memoryPools>
      <memoryTotal>2</memoryTotal>
      <memoryUsed>2</memoryUsed>
      <memoryUtilization>1</memoryUtilization>
      <name>String value</name>
      <ipAddress>String value</ipAddress>
    </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" : 12,
            "memoryTotal" : 12,
            "memoryUsed" : 12,
            "memoryUtilization" : 11,
            "poolName" : "Another string value",
            "poolType" : 11
          } ]
        },
        "memoryTotal" : 2,
        "memoryUsed" : 2,
        "memoryUtilization" : 1,
        "name" : "String value"
      }
    } ]
  }
}