CPU,Memory on Network Device

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
tsabit
Posts: 35
Joined: Thu Sep 15, 2016 3:26 am

CPU,Memory on Network Device

Post by tsabit »

Hi Team Support,

how to show the detail of CPU,memory,fan,temperature,etc on Nagiso XI if the device are like Juiper,Cisco,F5 ?
please help me.
User avatar
mcapra
Posts: 3739
Joined: Thu May 05, 2016 3:54 pm

Re: CPU,Memory on Network Device

Post by mcapra »

For the Cisco/Juniper devices, you would probably need to refer to their manuals to get the specific OID/MIB to run an snmp query against. Then, once you know that value, you could set it up as a check using check_snmp.

If you're not incredibly familiar with SNMP, you could share an snmpwalk against the device here and we could probably identify the relevant MIBs/OIDs.
Former Nagios employee
https://www.mcapra.com/
tsabit
Posts: 35
Joined: Thu Sep 15, 2016 3:26 am

Re: CPU,Memory on Network Device

Post by tsabit »

Hi Support,

I have tested oid with adding network device e.g Firewall juniper ssg 520 but still error with error message "No response ....."

i have tried ssh with ip address 161 is working

the oid is here

.1.3.6.1.4.1.3224.16.1.1.0 cpu
.1.3.6.1.4.1.3224.16.2.1.0 memory
please assist me.
You do not have the required permissions to view the files attached to this post.
User avatar
mcapra
Posts: 3739
Joined: Thu May 05, 2016 3:54 pm

Re: CPU,Memory on Network Device

Post by mcapra »

Can you share the output of an snmpwalk from your Nagios XI machine against the respective branches? Like so replacing the arguments with ones appropriate for your device:

Code: Select all

snmpwalk -mALL -v<version> -c<community> <host> 1.3.6.1.4.1.3224.16.4.1
Some other branches I would like to see the output for:

Code: Select all

1.3.6.1.4.1.3224.16.1
1.3.6.1.4.1.3224.16.2
1.3.6.1.4.1.3224.16.3
Here's a sample output for one of the HOST-RESOURCES-MIB trees on one of my lab machines:

Code: Select all

[root@xi-stable ~]# snmpwalk -mALL -v2c -cwelcome2 192.168.67.105 1.3.6.1.2.1.25.2.3.1.3
HOST-RESOURCES-MIB::hrStorageDescr.1 = STRING: Physical memory
HOST-RESOURCES-MIB::hrStorageDescr.3 = STRING: Virtual memory
HOST-RESOURCES-MIB::hrStorageDescr.6 = STRING: Memory buffers
HOST-RESOURCES-MIB::hrStorageDescr.7 = STRING: Cached memory
HOST-RESOURCES-MIB::hrStorageDescr.8 = STRING: Shared memory
HOST-RESOURCES-MIB::hrStorageDescr.10 = STRING: Swap space
HOST-RESOURCES-MIB::hrStorageDescr.31 = STRING: /
HOST-RESOURCES-MIB::hrStorageDescr.36 = STRING: /dev/shm
HOST-RESOURCES-MIB::hrStorageDescr.38 = STRING: /run
HOST-RESOURCES-MIB::hrStorageDescr.39 = STRING: /sys/fs/cgroup
HOST-RESOURCES-MIB::hrStorageDescr.57 = STRING: /boot
Though yours will look very different.
Former Nagios employee
https://www.mcapra.com/
Locked