mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
12 lines
321 B
PHP
12 lines
321 B
PHP
![]() |
<?php
|
||
|
|
||
|
if ($device['os'] === 'ruckuswireless-hotzone') {
|
||
|
echo 'Ruckus Hotzone: ';
|
||
|
|
||
|
$usage = snmp_get($device, '.1.3.6.1.4.1.25053.1.1.11.1.1.1.2.0', '-OvQ');
|
||
|
|
||
|
if (is_numeric($usage)) {
|
||
|
discover_mempool($valid_mempool, $device, 0, 'ruckuswireless-hotzone', 'System Memory', '100', null, null);
|
||
|
}
|
||
|
}
|