fix: Update applications poller to use numeric oid instead of nsExtendOutputFull (#6277)

* fix: Update applications poller to use numeric oid instead of nsExtendOutputFull

* Accidental m
This commit is contained in:
Neil Lathwood
2017-03-31 04:01:40 +01:00
committed by Tony Murray
parent 90be6d1f68
commit a6391ed3e8
15 changed files with 27 additions and 36 deletions

View File

@@ -5,9 +5,8 @@ use LibreNMS\RRD\RrdDefinition;
$name = 'fbsd-nfs-server';
$app_id = $app['app_id'];
$options = '-O qv';
$mib = 'NET-SNMP-EXTEND-MIB';
$oid = 'nsExtendOutLine.13.102.98.115.100.110.102.115.115.101.114.118.101.114';
$nfsserver = snmp_walk($device, $oid, $options, $mib);
$oid = '.1.3.6.1.4.1.8072.1.3.2.4.1.2.13.102.98.115.100.110.102.115.115.101.114.118.101.114';
$nfsserver = snmp_walk($device, $oid, $options);
update_application($app, $nfsserver);
list($getattr, $setattr, $lookup, $readlink, $read, $write, $create, $remove, $rename, $link, $symlink,