* * 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]); }