Wireless Access

last person joined: 15 hours ago 

Access network design for branch, remote, outdoor, and campus locations with HPE Aruba Networking access points and mobility controllers.
Expand all | Collapse all

Getting/Graphing CPU on Mobility Switch running Version 7.1.3.2

This thread has been viewed 0 times
  • 1.  Getting/Graphing CPU on Mobility Switch running Version 7.1.3.2

    Posted Jul 25, 2012 05:24 PM

    I've downloaded the mibs and found the pollling for polling CPU load via SNMP:

     

    .1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3

     

    If I do a snmpwalk I get:

    # snmpwalk -c <mystring> -On -v2c my-s3500 .1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3

    .1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3.1 = INTEGER: 1

     

    If i do a snmpget (which is what MRTG/Cacti will do), I get:

    # snmpget -c <mystring> -On -v2c my-s3500 .1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3.1

    .1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3.1 = No Such Instance currently exists at this OID

     

    What gives ?

     

    Is anyone currently graphing CPU on the mobility controllers ? I have no issues with our 8 6000's....

     

     



  • 2.  RE: Getting/Graphing CPU on Mobility Switch running Version 7.1.3.2

    EMPLOYEE
    Posted Jul 29, 2012 04:43 AM

    hi kconnnell

     

    Looks like a bug, I will raise it with the MAS devs. By the way, something you will come across too when playing cacti with MAS, is that the datapath NPUs (which are visible in AOS MIB and also from the CLI command 'show datapath utilisation') are missing from MAS. Design is aware of it and plans to add it back in, but they did note that these datapath CPUs are not currently used in MAS hence the reason they were removed. However, they did concede that for completeness and future use, that they should be added.

     

    I will try to convince them to address both of these at the same time, if you need to chase up on this, please contact support and refer to bug 66315.

    Finally, if you're using cacti, you could work around this with a custom data query like below.

    regards
    -jeff


    <interface>
      <name>Get Aruba CPU/NPU Util</name>
      <description>Get CPU load info from wlsxSysXProcessorTable</description>
      <oid_index>.1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3</oid_index>
      <index_order_type>numeric</index_order_type>
      <oid_index_parse>OID/REGEXP:.*\.([0-9]+)$</oid_index_parse>
      <fields>
        <cpuIndex>
          <name>CPU #</name>
          <method>walk</method>
          <source>OID/REGEXP:.*\.([0-9]+)$</source>
          <direction>input</direction>
          <oid>.1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3</oid>
        </cpuIndex>
        <sysXProcessorLoad>
          <name>Processor Load</name>
          <method>walk</method>
          <source>value</source>
          <direction>output</direction>
          <oid>.1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3</oid>
        </sysXProcessorLoad>
        <sysXProcessorDescr>
          <name>Description</name>
          <method>walk</method>
          <source>value</source>
          <direction>input</direction>
          <oid>.1.3.6.1.4.1.14823.2.2.1.1.1.9.1.2</oid>
        </sysXProcessorDescr>
      </fields>
    </interface>



  • 3.  RE: Getting/Graphing CPU on Mobility Switch running Version 7.1.3.2

    Posted Jul 30, 2012 12:37 PM

    Awesome, thanks for the response and help.