Cisco Evolved Programmable Network Manager API
Evolved Programmable Network Manager API Documentation

GET HistoricalWLCCPUUtilizations

Resource Information

Rate Limiting?

Yes

Sorting?

Yes

Paging?

Yes

Filtering?

Yes

Response Formats

xml

json

User Group

NBI Read

HTTP Methods

GET

Represents the historical CPU utilization information collected from WLAN controllers in past 24 hours.

Since Product Version: 3.1

Resource URL

/webacs/api/v1/data/HistoricalWLCCPUUtilizations

Response Parameters

Type Attribute Name Description

String

averageCPUUtilization

The average utilization of all CPUs in the controller

long

collectionTime

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

String

instanceUuid

This is a uuid for this instance.

String

ipAddress

WLAN controller IP address

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

<?xml version="1.0" ?>
<queryResponse type="HistoricalWLCCPUUtilizations" responseType="getEntity" requestUrl="https://172.25.123.114/webacs/api/v1/data/HistoricalWLCCPUUtilizations/15" rootUrl="https://172.25.123.114/webacs/api/v1/data">
  <entity dtoType="historicalWLCCPUUtilizationsDTO" type="HistoricalWLCCPUUtilizations" url="https://172.25.123.114/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://172.25.123.114/webacs/api/v1/data/HistoricalWLCCPUUtilizations/15.json

{
  "queryResponse" : {
    "@type" : "HistoricalWLCCPUUtilizations",
    "@responseType" : "getEntity",
    "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data\/HistoricalWLCCPUUtilizations\/15",
    "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/data",
    "entity" : {
      "@dtoType" : "historicalWLCCPUUtilizationsDTO",
      "@type" : "HistoricalWLCCPUUtilizations",
      "@url" : "https : \/\/172.25.123.114\/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"
      }
    }
  }
}