mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
20 lines
550 B
PHP
20 lines
550 B
PHP
<?php
|
|
if ($device['os'] == 'pbn') {
|
|
|
|
echo 'PBN-MEMORY-POOL: ';
|
|
|
|
// 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-MEMORY-POOL-MIB::nmsMemoryPoolUtilization.0', '-OUvQ');
|
|
|
|
if (is_numeric($usage)) {
|
|
discover_mempool($valid_mempool, $device, 0, 'pbn-mem', 'Main Memory', '100', null, null);
|
|
}
|
|
}
|
|
}
|