DX NetOps

  • 1.  CA Spectrum- Monitoring attributes report

    Posted Sep 12, 2017 03:38 AM

    Hi Guys,

     

    Is there any way to export a report for all the monitoring attributes that are enabled on the devices discovered in CA Spectrum ?

     

    Example: On Cisco devices what all attributes are supported and enabled in CA Spectrum, likewise for other modeltypes too. Once this information is fetched in CSV/XML , we would like to cross run the query to check whether the minimum required monitoring (say top 10 attributes) on the device/s are enabled or not.

     

    May be this looks  complex, but any ideas/thoughts/suggestions are going to help.

     

    Thanks !

    Sandeep 



  • 2.  Re: CA Spectrum- Monitoring attributes report

    Posted Sep 12, 2017 11:54 AM

    Sandeep,

     

    That is going to be a tough one.

     

    You can use the Command Line Interface to run a "show types mth=<MTH>" where <MTH> is the model type handle. The last column of output will be the attribute Flags. It will tell you if it is an external attribute, readable, writable, stored in memory and/or the database and if it is polled. For example, the following is the output from the following command to dump the attributes for the Rtr_Cisco model type (model type handle 0x21000c) that are polled (with a Flag of "P"):

     

    ./show attributes mth=0x21000c | grep -i ",P"

    0x10052 sysDescr Text String E,R,D,P
    0x100c3 ifNumber Integer E,R,M,D,P
    0x10245 sysUpTime Time Ticks E,R,P
    0x1102e sysLocation Text String E,R,W,D,P
    0x11f7c ifStackLastChange Time Ticks E,R,M,D,P
    0x11f7d ifTableLastChange Time Ticks E,R,M,D,P
    0x210b66 ccmHistoryRunningLastChanged Integer E,R,M,D,P
    0x230c52 snmpEngineBoots Integer E,R,M,D,P

     

    E = External

    R = Read

    W = Write

    M = Value stored in memory

    D = Value stored in database

    P = Polled

     

    Joe