mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
274 B
PHP
10 lines
274 B
PHP
![]() |
<?php
|
||
|
|
||
|
if ($device['os'] === 'benuos') {
|
||
|
echo 'BENU CPU: ';
|
||
|
|
||
|
$descr = 'Processor';
|
||
|
$usage = snmp_get($device, 'bSysAvgCPUUtil5Min.0', '-OvQs', 'BENU-HOST-MIB');
|
||
|
discover_processor($valid['processor'], $device, $oid, 1, 'benuos', 'Processor', '1', $usage);
|
||
|
}
|