2015-12-27 00:23:39 +01:00
|
|
|
<?php
|
|
|
|
if ($device['os'] == 'pbn') {
|
|
|
|
echo 'PBN-MEMORY-POOL: ';
|
|
|
|
|
2015-12-27 12:12:43 +01:00
|
|
|
// find out wich build number we have
|
|
|
|
preg_match('/^.* Build (?<build>\d+)/', $device['version'], $version);
|
|
|
|
d_echo($version);
|
2015-12-27 00:23:39 +01:00
|
|
|
|
2015-12-27 12:12:43 +01:00
|
|
|
// specified MIB supported since build 16607
|
|
|
|
if ($version[build] >= 16607) {
|
2016-09-28 08:19:28 -05:00
|
|
|
$usage = snmp_get($device, 'nmsMemoryPoolUtilization.0', '-OUvQ', 'NMS-MEMORY-POOL-MIB', 'pbn');
|
2015-12-27 12:12:43 +01:00
|
|
|
|
|
|
|
if (is_numeric($usage)) {
|
|
|
|
discover_mempool($valid_mempool, $device, 0, 'pbn-mem', 'Main Memory', '100', null, null);
|
|
|
|
}
|
2015-12-27 00:23:39 +01:00
|
|
|
}
|
|
|
|
}
|