mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
286 B
PHP
Executable File
10 lines
286 B
PHP
Executable File
<?php
|
|
|
|
if ($device['os'] === 'mypoweros') {
|
|
echo 'MAIPU-MEMORY-POOL: ';
|
|
$usage = snmp_get($device, 'allocBytesPercent.0', '-OvQ', 'MPIOS-MIB');
|
|
if (is_numeric($usage)) {
|
|
discover_mempool($valid_mempool, $device, 0, 'mypoweros', 'Memory', '100', null, null);
|
|
}
|
|
}
|