We've recently acquired a NetApp ONTAP 9.3 FAS Hybrid system that we are trying to monitor with our Nagios monitoring system.
SNMP looks like the easiest way to do this.
We've managed to enable SNMP on the system, and I've obtained the relevant MIB. When browsing the MIB, I can see that the metrics I am most interested in are in:
.1.3.6.1.4.1.789.1.2.2
eg
.1.3.6.1.4.1.789.1.2.2.23.0 is CacheAge
However, when querying these OIDs, they don't see to exist on the system. When I do an snmpwalk from the parent OID:
snmpwalk -Os -c public -v 2c <x.x.x.x> .1.3.6.1.4.1.789.1.2
I see the following stream:
<snip>
enterprises.789.1.2.1.14.1.13.101.120.116.115.116.111.114.101.48.49.95.48.49 = INTEGER: 8
enterprises.789.1.2.1.14.1.13.101.120.116.115.116.111.114.101.48.49.95.48.50 = INTEGER: 1
enterprises.789.1.2.1.14.1.14.101.120.116.115.116.111.114.101.48.49.95.48.49 = Counter64: 865366553
enterprises.789.1.2.1.14.1.14.101.120.116.115.116.111.114.101.48.49.95.48.50 = Counter64: 868700321
enterprises.789.1.2.6.1.0 = Timeticks: (23697690) 2 days, 17:49:36.90
enterprises.789.1.2.6.2.0 = Counter32: 443478
enterprises.789.1.2.6.3.0 = Counter32: 346
enterprises.789.1.2.6.4.0 = Counter32: 0
<snip>
The walk jumps from
enterprises.789.1.2.1.
to
enterprises.789.1.2.6.
skipping all the OIDs I am interested in in between.
Is there something extra I need to do on the system to expose the OIDs I am looking for?