I want to monitor a list of Netapp Volume. In the documentation of NetApp, i found this :
1. Poll the "dfFileSys" OID to determine the Index number for each aggregate and volume on the filer.
bash-3.2$ snmpwalk -v 1 -c public filer1 .1.3.6.1.4.1.789.1.5.4.1.2 SNMPv2-SMI::enterprises.789.1.5.4.1.2.1 = STRING: "aggr0" SNMPv2-SMI::enterprises.789.1.5.4.1.2.2 = STRING: "aggr0/.snapshot" SNMPv2-SMI::enterprises.789.1.5.4.1.2.3 = STRING: "/vol/vol0/" SNMPv2-SMI::enterprises.789.1.5.4.1.2.4 = STRING: "/vol/vol0/.snapshot" SNMPv2-SMI::enterprises.789.1.5.4.1.2.5 = STRING: "aggr1" SNMPv2-SMI::enterprises.789.1.5.4.1.2.6 = STRING: "aggr1/.snapshot" SNMPv2-SMI::enterprises.789.1.5.4.1.2.7 = STRING: "/vol/vol1/" SNMPv2-SMI::enterprises.789.1.5.4.1.2.8 = STRING: "/vol/vol1/.snapshot"
2. Once the Index values are known, poll the "dfPerCentKBytesCapacity" OID:
bash-3.2$ snmpwalk -c public filer1 .1.3.6.1.4.1.789.1.5.4.1.6 SNMPv2-SMI::enterprises.789.1.5.4.1.6.1 = INTEGER: 71 SNMPv2-SMI::enterprises.789.1.5.4.1.6.2 = INTEGER: 15 SNMPv2-SMI::enterprises.789.1.5.4.1.6.3 = INTEGER: 4 SNMPv2-SMI::enterprises.789.1.5.4.1.6.4 = INTEGER: 0 SNMPv2-SMI::enterprises.789.1.5.4.1.6.5 = INTEGER: 2 SNMPv2-SMI::enterprises.789.1.5.4.1.6.6 = INTEGER: 2 SNMPv2-SMI::enterprises.789.1.5.4.1.6.7 = INTEGER: 31 SNMPv2-SMI::enterprises.789.1.5.4.1.6.8 = INTEGER: 0
I need to link the first value with the second. Can I make this with a sensor snmp ? Or i need to use the XML Custom EXE/Script Sensor for making that ?
Add comment