mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* fix: Fixed apc state support emsOutput * newdevice: Added more health information for APC devices * update schema file * schema file renamed
175 lines
8.5 KiB
PHP
175 lines
8.5 KiB
PHP
<?php
|
|
|
|
$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.2.2.2.0', '-OsqnU', '');
|
|
d_echo($oids."\n");
|
|
|
|
if ($oids) {
|
|
echo 'APC UPS Internal ';
|
|
list($oid,$current) = explode(' ', $oids);
|
|
$precision = 1;
|
|
$sensorType = 'apc';
|
|
$index = 0;
|
|
$descr = 'Internal Temperature';
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, '1', '1', null, null, null, null, $current);
|
|
}
|
|
|
|
// Environmental monitoring on UPSes etc
|
|
// FIXME emConfigProbesTable may also be used? But not filled out on my device...
|
|
$apc_env_data = snmpwalk_cache_oid($device, 'iemConfigProbesTable', array(), 'PowerNet-MIB');
|
|
$apc_env_data = snmpwalk_cache_oid($device, 'iemStatusProbesTable', $apc_env_data, 'PowerNet-MIB');
|
|
|
|
foreach (array_keys($apc_env_data) as $index) {
|
|
$descr = $apc_env_data[$index]['iemStatusProbeName'];
|
|
$current = $apc_env_data[$index]['iemStatusProbeCurrentTemp'];
|
|
$sensorType = 'apc';
|
|
$oid = '.1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.'.$index;
|
|
$low_limit = ($apc_env_data[$index]['iemConfigProbeMinTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeMinTempThreshold'] : null);
|
|
$low_warn_limit = ($apc_env_data[$index]['iemConfigProbeLowTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeLowTempThreshold'] : null);
|
|
$high_warn_limit = ($apc_env_data[$index]['iemConfigProbeHighTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeHighTempThreshold'] : null);
|
|
$high_limit = ($apc_env_data[$index]['iemConfigProbeMaxTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeMaxTempThreshold'] : null);
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $current);
|
|
}
|
|
|
|
$apc_env_data = snmpwalk_cache_oid($device, 'emsProbeStatus', array(), 'PowerNet-MIB');
|
|
|
|
foreach (array_keys($apc_env_data) as $index) {
|
|
if ($apc_env_data[$index]['emsProbeStatusProbeCommStatus'] != 'commsNeverDiscovered') {
|
|
$descr = $apc_env_data[$index]['emsProbeStatusProbeName'];
|
|
$current = $apc_env_data[$index]['emsProbeStatusProbeTemperature'];
|
|
$sensorType = 'apc';
|
|
$oid = '.1.3.6.1.4.1.318.1.1.10.3.13.1.1.3.' . $index;
|
|
$low_limit = $apc_env_data[$index]['emsProbeStatusProbeMinTempThresh'];
|
|
$low_warn_limit = $apc_env_data[$index]['emsProbeStatusProbeLowTempThresh'];
|
|
$high_warn_limit = $apc_env_data[$index]['emsProbeStatusProbeHighTempThresh'];
|
|
$high_limit = $apc_env_data[$index]['emsProbeStatusProbeMaxTempThresh'];
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $current);
|
|
}
|
|
}
|
|
|
|
// InRow Chiller.
|
|
// A silly check to find out if it's the right hardware.
|
|
$oids = snmp_get($device, 'airIRRCGroupSetpointsCoolMetric.0', '-OsqnU', 'PowerNet-MIB');
|
|
if ($oids) {
|
|
echo 'APC InRow Chiller ';
|
|
$temps = array();
|
|
$temps['.1.3.6.1.4.1.318.1.1.13.3.2.2.2.7'] = 'Rack Inlet'; //airIRRCUnitStatusRackInletTempMetric
|
|
$temps['.1.3.6.1.4.1.318.1.1.13.3.2.2.2.9'] = 'Supply Air'; //airIRRCUnitStatusSupplyAirTempMetric
|
|
$temps['.1.3.6.1.4.1.318.1.1.13.3.2.2.2.11'] = 'Return Air'; //airIRRCUnitStatusReturnAirTempMetric
|
|
$temps['.1.3.6.1.4.1.318.1.1.13.3.2.2.2.24'] = 'Entering Fluid'; //airIRRCUnitStatusEnteringFluidTemperatureMetric
|
|
$temps['.1.3.6.1.4.1.318.1.1.13.3.2.2.2.26'] = 'Leaving Fluid'; //airIRRCUnitStatusLeavingFluidTemperatureMetric
|
|
foreach ($temps as $obj => $descr) {
|
|
$oids = snmp_get($device, $obj.'.0', '-OsqnU', 'PowerNet-MIB');
|
|
list($oid,$current) = explode(' ', $oids);
|
|
$divisor = 10;
|
|
$sensorType = substr($descr, 0, 2);
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, '0', $sensorType, $descr, $divisor, '1', null, null, null, null, $current);
|
|
}
|
|
}
|
|
|
|
// Portable Air Conditioner
|
|
$set_oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.13.2.2.4.0', '-OsqnU', '');
|
|
|
|
$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.13.2.2.10.0', '-OsqnU', '');
|
|
d_echo($oids."\n");
|
|
d_echo($set_oids."\n");
|
|
|
|
if ($oids !== false) {
|
|
echo 'APC Portable Supply Temp ';
|
|
list($oid,$current_raw) = explode(' ', $oids);
|
|
$precision = 10;
|
|
$current = ($current_raw / $precision);
|
|
$sensorType = 'apc';
|
|
$index = 0;
|
|
if ($set_oids !== false) {
|
|
list(, $set_point_raw) = explode(' ', $set_oids);
|
|
$set_point = ($set_point_raw / $precision);
|
|
$descr = 'Supply Temp - Setpoint: '.$set_point.'°C';
|
|
} else {
|
|
$descr = 'Supply Temperature';
|
|
}
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, $precision, '1', null, null, null, null, $current);
|
|
}
|
|
|
|
unset($oids);
|
|
$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.13.2.2.12.0', '-OsqnU', '');
|
|
d_echo($oids."\n");
|
|
|
|
if ($oids !== false) {
|
|
echo 'APC Portable Return Temp ';
|
|
list($oid,$current_raw) = explode(' ', $oids);
|
|
$precision = 10;
|
|
$current = ($current_raw / $precision);
|
|
$sensorType = 'apc';
|
|
$index = 1;
|
|
if ($set_oids !== false) {
|
|
list(, $set_point_raw) = explode(' ', $set_oids);
|
|
$set_point = ($set_point_raw / $precision);
|
|
$descr = 'Return Temp - Setpoint: '.$set_point.'°C';
|
|
} else {
|
|
$descr = 'Return Temperature';
|
|
}
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, $precision, '1', null, null, null, null, $current);
|
|
}
|
|
|
|
unset($oids);
|
|
$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.13.2.2.14.0', '-OsqnU', '');
|
|
d_echo($oids."\n");
|
|
if ($oids !== false) {
|
|
echo 'APC Portable Remote Temp ';
|
|
list($oid,$current_raw) = explode(' ', $oids);
|
|
$precision = 10;
|
|
$current = ($current_raw / $precision);
|
|
$sensorType = 'apc';
|
|
$index = 2;
|
|
if ($set_oids !== false) {
|
|
list(, $set_point_raw) = explode(' ', $set_oids);
|
|
$set_point = ($set_point_raw / $precision);
|
|
$descr = 'Remote Temp - Setpoint: '.$set_point.'°C';
|
|
} else {
|
|
$descr = 'Remote Temperature';
|
|
}
|
|
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, $precision, '1', null, null, null, null, $current);
|
|
}
|
|
|
|
$cooling_unit = snmpwalk_cache_oid($device, 'coolingUnitExtendedAnalogEntry', array(), 'PowerNet-MIB');
|
|
foreach ($cooling_unit as $index => $data) {
|
|
$cur_oid = '.1.3.6.1.4.1.318.1.1.27.1.6.1.2.1.3.' . $index;
|
|
$descr = $data['coolingUnitExtendedAnalogDescription'];
|
|
$scale = $data['coolingUnitExtendedAnalogScale'];
|
|
$value = $data['coolingUnitExtendedAnalogValue'];
|
|
if (preg_match('/Temperature/', $descr) && $data['coolingUnitExtendedAnalogUnits'] == 'C' && $value >= 0) {
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $cur_oid, $cur_oid, 'apc', $descr, $scale, 1, null, null, null, null, $value);
|
|
}
|
|
}
|
|
|
|
foreach ($cooling_unit_analog as $index => $data) {
|
|
$cur_oid = '.1.3.6.1.4.1.318.1.1.27.1.4.1.2.1.3.' . $index;
|
|
$descr = $data['coolingUnitStatusAnalogDescription'];
|
|
$scale = $data['coolingUnitStatusAnalogScale'];
|
|
$value = $data['coolingUnitStatusAnalogValue'];
|
|
if (preg_match('/Temperature/', $descr) && $data['coolingUnitStatusAnalogUnits'] == 'C' && $value >= 0) {
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $cur_oid, $cur_oid, 'apc', $descr, $scale, 1, null, null, null, null, $value);
|
|
}
|
|
}
|
|
|
|
foreach ($pre_cache['mem_sensors_status'] as $index => $data) {
|
|
$cur_oid = '.1.3.6.1.4.1.318.1.1.10.4.2.3.1.5.' . $index;
|
|
$descr = $data['memSensorsStatusSensorName'] . ' - ' . $data['memSensorsStatusSensorLocation'];
|
|
$divisor = 1;
|
|
$multiplier = 1;
|
|
$value = $data['memSensorsTemperature'];
|
|
if (is_numeric($value)) {
|
|
$user_func = null;
|
|
if ($pre_cache['memSensorsStatusSysTempUnits'] === 'fahrenheit') {
|
|
$user_func = 'convert_to_celsius';
|
|
}
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $cur_oid, 'memSensorsTemperature.' . $index, 'apc', $descr, $divisor, $multiplier, null, null, null, null, $value, 'snmp', null, null, $user_func);
|
|
}
|
|
}
|