mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
18 lines
690 B
PHP
18 lines
690 B
PHP
<?php
|
|
|
|
// Netonix Fan Speeds
|
|
if ($device['os'] == 'netonix') {
|
|
echo 'Netonix: ';
|
|
$oids = snmpwalk_cache_multi_oid($device, 'fanTable', array(), 'NETONIX-SWITCH-MIB', '+'.$config['mibdir'].'/netonix');
|
|
if (is_array($oids)) {
|
|
foreach ($oids as $index => $entry) {
|
|
if (is_numeric($entry['fanSpeed']) && is_numeric($index)) {
|
|
$descr = $index;
|
|
$oid = '.1.3.6.1.4.1.46242.2.1.2.'.$index;
|
|
$current = $entry['fanSpeed'];
|
|
discover_sensor($valid['sensor'], 'fanspeed', $device, $oid, $index, $device['os'], $descr, '1', '1', '0', '0', null, null, $current);
|
|
}
|
|
}
|
|
}
|
|
}//end if
|