Cisco Prime Infrastructure API
Prime Infrastructure API Documentation

GET HistoricalWLCCPUUtilizations

Represents the historical CPU 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/v1/data/HistoricalWLCCPUUtilizations

Response Parameters

Attribute Description

averageCPUUtilization String

The average utilization of all CPUs in the controller

collectionTime long

The time on the server when the collection was performed, as milliseconds from the Unix epoch

cpuUtilization CPUUtilization[]

Detailed utilization information per each device CPU

ipAddress String

WLAN controller IP address

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/v1/data/HistoricalWLCCPUUtilizations/15

<?xml version="1.0" ?>
<queryResponse type="HistoricalWLCCPUUtilizations" responseType="getEntity" requestUrl="https://localhost/webacs/api/v1/data/HistoricalWLCCPUUtilizations/15" rootUrl="https://localhost/webacs/api/v1/data">
  <entity dtoType="historicalWLCCPUUtilizationsDTO" type="HistoricalWLCCPUUtilizations" url="https://localhost/webacs/api/v1/data/HistoricalWLCCPUUtilizations/15">
    <historicalWLCCPUUtilizationsDTO displayName="String value" id="15" uuid="String value">
      <averageCPUUtilization>String value</averageCPUUtilization>
      <collectionTime>2</collectionTime>
      <CPUs>
        <CPU>
          <cpuIndex>1</cpuIndex>
          <cpuName>String value</cpuName>
          <cpuUtilization>1</cpuUtilization>
        </CPU>
      </CPUs>
      <ipAddress>String value</ipAddress>
      <name>String value</name>
    </historicalWLCCPUUtilizationsDTO>
  </entity>
</queryResponse>

Sample JSON Payload

https://localhost/webacs/api/v1/data/HistoricalWLCCPUUtilizations/15.json

{
  "queryResponse" : {
    "@type" : "HistoricalWLCCPUUtilizations",
    "@responseType" : "getEntity",
    "@requestUrl" : "https : \/\/localhost\/webacs\/api\/v1\/data\/HistoricalWLCCPUUtilizations\/15",
    "@rootUrl" : "https : \/\/localhost\/webacs\/api\/v1\/data",
    "entity" : {
      "@dtoType" : "historicalWLCCPUUtilizationsDTO",
      "@type" : "HistoricalWLCCPUUtilizations",
      "@url" : "https : \/\/localhost\/webacs\/api\/v1\/data\/HistoricalWLCCPUUtilizations\/15",
      "historicalWLCCPUUtilizationsDTO" : {
        "@displayName" : "String value",
        "@id" : "15",
        "@uuid" : "String value",
        "averageCPUUtilization" : "String value",
        "collectionTime" : 2,
        "CPUs" : {
          "CPU" : {
            "cpuIndex" : 1,
            "cpuName" : "String value",
            "cpuUtilization" : 1
          }
        },
        "ipAddress" : "String value",
        "name" : "String value"
      }
    }
  }
}