mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
13 lines
400 B
PHP
13 lines
400 B
PHP
![]() |
<?php
|
||
|
|
||
|
if ($device['os'] == 'hirschmann') {
|
||
|
echo 'Hirschmann : ';
|
||
|
$descr = 'Processor';
|
||
|
$usage = snmp_get($device, 'HMPRIV-MGMT-SNMP-MIB::hmCpuUtilization.0', '-OvqU');
|
||
|
|
||
|
if (is_numeric($usage)) {
|
||
|
discover_processor($valid['processor'], $device, 'HMPRIV-MGMT-SNMP-MIB::hmCpuUtilization.0', '0', 'hirschmann', $descr, '1', $usage, null, null);
|
||
|
}
|
||
|
}
|
||
|
unset($processors_array);
|