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

@@ -8,7 +8,7 @@ if (!empty($agent_data['app'][$name])) {
$nginx = $agent_data['app'][$name];
} else {
// Polls nginx statistics from script via SNMP
$nginx = snmp_get($device, 'nsExtendOutputFull.5.110.103.105.110.120', '-Ovq', 'NET-SNMP-EXTEND-MIB');
$nginx = snmp_get($device, '.1.3.6.1.4.1.8072.1.3.2.3.1.2.5.110.103.105.110.120', '-Ovq');
}
update_application($app, $nginx);