mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added fan speed sensor
This commit is contained in:
@@ -13,13 +13,13 @@ if ($device['os'] == 'xos') {
|
|||||||
$index = $matches[1];
|
$index = $matches[1];
|
||||||
// substract 100 from index to start from 1 instead of 101
|
// substract 100 from index to start from 1 instead of 101
|
||||||
$modindex = ($index - 100);
|
$modindex = ($index - 100);
|
||||||
$oid = "1.3.6.1.4.1.1916.1.1.1.9.1.4.$index";
|
$oid = "1.3.6.1.4.1.1916.1.1.1.9.1.4.$index";
|
||||||
$value = snmp_get($device, $oid, '-Oqv', 'EXTREME-BASE-MIB');
|
$value = snmp_get($device, $oid, '-Oqv', 'EXTREME-BASE-MIB');
|
||||||
$descr = "Fan Speed $modindex";
|
$descr = "Fan Speed $modindex";
|
||||||
$high_limit = ($value * 1.5);
|
$high_limit = ($value * 1.5);
|
||||||
$high_warn_limit = ($value * 1.25);
|
$high_warn_limit = ($value * 1.25);
|
||||||
$low_warn_limit = ($value * 0.75);
|
$low_warn_limit = ($value * 0.75);
|
||||||
$low_limit = ($value * 0.5);
|
$low_limit = ($value * 0.5);
|
||||||
if (is_numeric($value)) {
|
if (is_numeric($value)) {
|
||||||
discover_sensor($valid['sensor'], 'fanspeed', $device, $oid, $index, 'extreme-fanspeed', $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $value);
|
discover_sensor($valid['sensor'], 'fanspeed', $device, $oid, $index, 'extreme-fanspeed', $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $value);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user