Files
librenms-librenms/includes/discovery/sensors/fanspeed/quanta.inc.php
Mark Guzman a5cf0b720a newdevice: Added Quanta lb6m device support (#6816)
newdevice: Added Quanta lb6m device support (#6816)
2017-06-13 21:30:00 +01:00

28 lines
1.1 KiB
PHP

<?php
/*
* LibreNMS Quanta LB6M Fan Speed information
*
* Copyright (c) 2017 Mark Guzman <segfault@hasno.info>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
d_echo('Quanta Fan Speeds');
$sensor_type = 'quanta_fan';
//FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesFanSpeed
$sensors_id_oid = 'boxServicesFanSpeed';
$sensors_values = snmpwalk_cache_multi_oid($device, $sensors_id_oid, array(), 'NETGEAR-BOXSERVICES-PRIVATE-MIB');
$numeric_oid_base = '.1.3.6.1.4.1.4413.1.1.43.1.6.1.4';
foreach ($sensors_values as $index => $entry) {
$current_value = $entry[$sensors_id_oid];
$descr = "Fan Speed $index:";
if ($current_value > 0) {
discover_sensor($valid['sensor'], 'fanspeed', $device, "$numeric_oid_base.$index", $index, $sensor_type, $descr, 1, 1, null, null, null, null, $current_value);
}
}