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

Resource URL

/webacs/api/v4/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

Updated

Since version 4 type of ipAddress attribute is InetAddress.

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 Arrow image CPUUtilization[]

Detailed utilization information per each controller CPU

instanceOrigin InstanceOriginEnum

Allowed values:

  • UNCONCERNED
  • APPLICATION
  • NETWORK

instanceTenantId Integer

This is a tenant id for this instance.

ipAddress InetAddress

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/v4/data/WLCCPUUtilizations/15

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

Sample JSON Payload

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

{
  "queryResponse" : {
    "@type" : "WLCCPUUtilizations",
    "@requestUrl" : "https://localhost/webacs/api/v4/data/WLCCPUUtilizations/15",
    "@responseType" : "getEntity",
    "@rootUrl" : "https://localhost/webacs/api/v4/data",
    "entity" : [ {
      "@dtoType" : "wLCCPUUtilizationsDTO",
      "@type" : "WLCCPUUtilizations",
      "@url" : "https://localhost/webacs/api/v4/data/WLCCPUUtilizations/15",
      "wlccpuUtilizationsDTO" : {
        "@displayName" : "String value",
        "@id" : 15,
        "@instanceTenantId" : "String value",
        "@uuid" : "String value",
        "CPUs" : {
          "CPU" : [ {
            "cpuIndex" : 1,
            "cpuName" : "String value",
            "cpuUtilization" : 1
          }, {
            "cpuIndex" : 11,
            "cpuName" : "Another string value",
            "cpuUtilization" : 11
          } ]
        },
        "averageCPUUtilization" : 1,
        "collectionTime" : 2,
        "ipAddress" : {
          "address" : "192.168.115.243"
        },
        "name" : "String value"
      }
    } ]
  }
}