mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Tidy up sensor discovery * more files * removed uneeded files * updated array check * updates for linux/supermicro * small changes * Update linux.inc.php * Add supermicro temps back to linux.inc.php * No need for is_file on rfc1628.inc.php, it exists * Revert rfc1628 change * Fix whitespace... * rebased * fixed $valid data not being passed to new sensors() function
43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS module to create sensors from Cisco Integrated Management Controllers (CIMC)
|
|
*
|
|
* Copyright (c) 2016 Aaron Daniels <aaron@daniels.id.au>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
$pwr_board = snmpwalk_array_num($device, '.1.3.6.1.4.1.9.9.719.1.9.14');
|
|
|
|
/*
|
|
* False == OID not found - this is not an error.
|
|
* null == timeout or something else that caused an error.
|
|
*/
|
|
if (is_null($pwr_board)) {
|
|
echo "Error\n";
|
|
} else {
|
|
$index = 1;
|
|
|
|
// Board Input Power
|
|
$oid = '.1.3.6.1.4.1.9.9.719.1.9.14.1.4';
|
|
$description = "MB Input Power";
|
|
d_echo($oid." - ".$description." - ".$pwr_board[$oid][$index]."\n");
|
|
discover_sensor($valid['sensor'], 'power', $device, $oid.".".$index, 'mb-input-power', 'cimc', $description, '1', '1', null, null, null, null, $temp_board[$oid][$index]);
|
|
|
|
// Board Input Current
|
|
$oid = '.1.3.6.1.4.1.9.9.719.1.9.14.1.8';
|
|
$description = "MB Input Current";
|
|
d_echo($oid." - ".$description." - ".$pwr_board[$oid][$index]."\n");
|
|
discover_sensor($valid['sensor'], 'current', $device, $oid.".".$index, 'mb-input-current', 'cimc', $description, '1', '1', null, null, null, null, $temp_board[$oid][$index]);
|
|
|
|
// Board Input Voltage
|
|
$oid = '.1.3.6.1.4.1.9.9.719.1.9.14.1.12';
|
|
$description = "MB Input Voltage";
|
|
d_echo($oid." - ".$description." - ".$pwr_board[$oid][$index]."\n");
|
|
discover_sensor($valid['sensor'], 'voltage', $device, $oid.".".$index, 'mb-input-voltage', 'cimc', $description, '1', '1', null, null, null, null, $temp_board[$oid][$index]);
|
|
}
|