Cisco Prime Infrastructure API
Prime Infrastructure API Documentation

GET WLCCPUUtilizations

Represents the latest CPU utilization collected from a WLAN controller.

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

DevNet Discussions

API version v1 is deprecated

This API version has been deprecated. It will be removed in a future release of the product. Please develop new clients using the latest API version. Please modify your existing clients to use a later API version.

Resource URL

/webacs/api/v1/data/WLCCPUUtilizations

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

Deprecated

This version has been deprecated. Please use v4.

Response Parameters

Attribute Description

averageCPUUtilization int

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 controller 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/WLCCPUUtilizations/15

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

Sample JSON Payload

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

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