Tony Murray 9284bc60ff Update code in includes to be PSR-2 compliant (#4220)
refactor: Update code in /includes to be psr2 compliant #4220
2016-08-28 18:32:58 +01:00

20 lines
540 B
PHP

<?php
if ($device['os'] == 'pbn') {
echo 'PBN CPU Usage';
// 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) {
$mibdir = $config['mibdir'].'/pbn'.':'.$config['mibdir'];
$usage = snmp_get($device, 'nmspmCPUTotal5min.1', '-OUvQ', 'NMS-PROCESS-MIB', $mibdir);
if (is_numeric($usage)) {
$proc = ($usage * 100);
}
}
}