add build specific handling on cpu and mempool discoverx/polling

This commit is contained in:
vitalisator
2015-12-27 12:12:43 +01:00
parent 81ab435942
commit b4cbd3087c
4 changed files with 56 additions and 22 deletions
+14 -4
View File
@@ -1,10 +1,20 @@
<?php
echo 'PBN CPU Usage';
if ($device['os'] == 'pbn') {
$usage = str_replace(' percent', '', snmp_get($device, 'NMS-PROCESS-MIB::nmspmCPUTotal5min', '-OvQ'));
echo 'PBN CPU Usage';
if (is_numeric($usage)) {
$proc = ($usage * 100);
// find out wich build number we have
preg_match('/^.* Build (?<build>\d+)/', $device['version'], $version);
d_echo($version);
// specified MIB supported since build 16607
if ($version[build] >= 16607) {
$usage = snmp_get($device, 'NMS-PROCESS-MIB::nmspmCPUTotal5min.1', '-OUvQ');
if (is_numeric($usage)) {
$proc = ($usage * 100);
}
}
}