mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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:
committed by
Tony Murray
parent
90be6d1f68
commit
a6391ed3e8
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user