diff --git a/includes/definitions/discovery/drac.yaml b/includes/definitions/discovery/drac.yaml index 84a5767bbf..083f613347 100644 --- a/includes/definitions/discovery/drac.yaml +++ b/includes/definitions/discovery/drac.yaml @@ -1,4 +1,4 @@ -mib: mibs/dell/DELL-RAC-MIB +mib: DELL-RAC-MIB:IDRAC-MIB-SMIv2 modules: sensors: state: @@ -16,3 +16,53 @@ modules: - { value: 4, descr: nonCritical, graph: 1, generic: 1 } - { value: 5, descr: critical, graph: 1, generic: 2 } - { value: 6, descr: nonRecoverable, graph: 1, generic: 2 } + - + oid: systemStateIDSDMCardUnitStatusCombined + value: systemStateIDSDMCardUnitStatusCombined + num_oid: .1.3.6.1.4.1.674.10892.5.4.200.10.1.58. + descr: 'IDSDM Card Unit Combined Status' + index: 'systemStateIDSDMCardUnitStatusCombined.{{ $index }}' + states: + - { value: 1, descr: other, graph: 1, generic: 3 } + - { value: 2, descr: unknown, graph: 1, generic: 3 } + - { value: 3, descr: ok, graph: 1, generic: 0 } + - { value: 4, descr: nonCritical, graph: 1, generic: 1 } + - { value: 5, descr: critical, graph: 1, generic: 2 } + - { value: 6, descr: nonRecoverable, graph: 1, generic: 2 } + - + oid: systemStateIDSDMCardDeviceStatusCombined + value: systemStateIDSDMCardDeviceStatusCombined + num_oid: .1.3.6.1.4.1.674.10892.5.4.200.10.1.60. + descr: 'IDSDM Card Device Combined Status' + index: 'systemStateIDSDMCardDeviceStatusCombined.{{ $index }}' + states: + - { value: 1, descr: other, graph: 1, generic: 3 } + - { value: 2, descr: unknown, graph: 1, generic: 3 } + - { value: 3, descr: ok, graph: 1, generic: 0 } + - { value: 4, descr: nonCritical, graph: 1, generic: 1 } + - { value: 5, descr: critical, graph: 1, generic: 2 } + - { value: 6, descr: nonRecoverable, graph: 1, generic: 2 } + - + oid: intrusionStatus + value: intrusionStatus + num_oid: .1.3.6.1.4.1.674.10892.5.4.300.70.1.5. + descr: 'Intrusion Status' + index: 'intrusionStatus.{{ $index }}' + states: + - { value: 1, descr: other, graph: 1, generic: 3 } + - { value: 2, descr: unknown, graph: 1, generic: 3 } + - { value: 3, descr: ok, graph: 1, generic: 0 } + - { value: 4, descr: nonCritical, graph: 1, generic: 1 } + - { value: 5, descr: critical, graph: 1, generic: 2 } + - { value: 6, descr: nonRecoverable, graph: 1, generic: 2 } + - + oid: intrusionReading + value: intrusionReading + num_oid: .1.3.6.1.4.1.674.10892.5.4.300.70.1.6. + descr: 'Intrusion Reading' + index: 'intrusionReading.{{ $index }}' + states: + - { value: 1, descr: chassisNotBreached, graph: 1, generic: 0 } + - { value: 2, descr: chassisBreached, graph: 1, generic: 2 } + - { value: 3, descr: chassisBreachedPrior, graph: 1, generic: 1 } + - { value: 4, descr: chassisBreachSensorFailure, graph: 1, generic: 1 } diff --git a/includes/discovery/sensors/state/drac.inc.php b/includes/discovery/sensors/state/drac.inc.php index 8392749c08..48fff7b0c2 100644 --- a/includes/discovery/sensors/state/drac.inc.php +++ b/includes/discovery/sensors/state/drac.inc.php @@ -2,7 +2,7 @@ /* * LibreNMS * - * Copyright (c) 2016 Søren Friis Rosiak + * Copyright (c) 2016 Søren Friis Rosiak * 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 @@ -10,80 +10,85 @@ * the source code distribution for details. */ -$tables = array( - array('virtualDiskTable','.1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.','virtualDiskState','virtualDiskName') , - array('processorDeviceTable','.1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.','processorDeviceStatus','processorDeviceBrandName') , - array('memoryDeviceTable','.1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.','memoryDeviceStatus','memoryDeviceLocationName') , - array('voltageProbeTable','.1.3.6.1.4.1.674.10892.5.4.600.20.1.5.','voltageProbeStatus','voltageProbeLocationName') , - array('amperageProbeTable','.1.3.6.1.4.1.674.10892.5.4.600.30.1.5.','amperageProbeStatus','amperageProbeLocationName') , - array('systemBatteryTable','.1.3.6.1.4.1.674.10892.5.4.600.50.1.5.','systemBatteryStatus','systemBatteryLocationName') -); +$tables = [ + ['virtualDiskTable','.1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.','virtualDiskState','virtualDiskName'], + ['processorDeviceTable','.1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.','processorDeviceStatus','processorDeviceBrandName'], + ['memoryDeviceTable','.1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.','memoryDeviceStatus','memoryDeviceLocationName'], + ['voltageProbeTable','.1.3.6.1.4.1.674.10892.5.4.600.20.1.5.','voltageProbeStatus','voltageProbeLocationName'], + ['amperageProbeTable','.1.3.6.1.4.1.674.10892.5.4.600.30.1.5.','amperageProbeStatus','amperageProbeLocationName'], + ['systemBatteryTable','.1.3.6.1.4.1.674.10892.5.4.600.50.1.5.','systemBatteryStatus','systemBatteryLocationName'] +]; foreach ($tables as $tablevalue) { - $temp = snmpwalk_cache_multi_oid($device, $tablevalue[0], array(), 'IDRAC-MIB-SMIv2'); - $cur_oid = $tablevalue[1]; + list($table_oid, $num_oid, $value_oid, $descr_oid) = $tablevalue; + $temp = snmpwalk_cache_multi_oid($device, $table_oid, array(), 'IDRAC-MIB-SMIv2', null, '-OQUse'); + // '-OQUsetX' - if (is_array($temp)) { - //Create State Index - $state_name = $tablevalue[2]; - $state_index_id = create_state_index($state_name); - - //Create State Translation - if ($state_index_id !== null) { - if ($state_name == 'virtualDiskState') { - $states = array( - array($state_index_id,'unknown',0,1,3) , - array($state_index_id,'online',0,2,0) , - array($state_index_id,'failed',0,3,2) , - array($state_index_id,'degraded',0,4,1) - ); - } elseif ($state_name == 'processorDeviceStatus' || $state_name == 'memoryDeviceStatus') { - $states = array( - array($state_index_id,'other',0,1,3) , - array($state_index_id,'unknown',0,2,3) , - array($state_index_id,'ok',0,3,0) , - array($state_index_id,'nonCritical',0,4,1) , - array($state_index_id,'critical',0,5,2) , - array($state_index_id,'nonRecoverable',0,6,2) - ); - } elseif ($state_name == 'voltageProbeStatus' || $state_name == 'amperageProbeStatus' || $state_name == 'systemBatteryStatus') { - $states = array( - array($state_index_id,'other',0,1,3) , - array($state_index_id,'unknown',0,2,3) , - array($state_index_id,'ok',0,3,0) , - array($state_index_id,'nonCriticalUpper',0,4,1) , - array($state_index_id,'criticalUpper',0,5,2) , - array($state_index_id,'nonRecoverableUpper',0,6,2) , - array($state_index_id,'nonCriticalLower',0,7,1) , - array($state_index_id,'criticalLower',0,8,2) , - array($state_index_id,'nonRecoverableLower',0,9,2) , - array($state_index_id,'failed',0,10,2) - ); - } - - foreach ($states as $value) { - $insert = array( - 'state_index_id' => $value[0], - 'state_descr' => $value[1], - 'state_draw_graph' => $value[2], - 'state_value' => $value[3], - 'state_generic_value' => $value[4] - ); - dbInsert($insert, 'state_translations'); - } + if (!empty($temp)) { + // Find the right states + if ($value_oid == 'virtualDiskState') { + $states = [ + ['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'unknown'], + ['value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'online'], + ['value' => 3, 'generic' => 2, 'graph' => 0, 'descr' => 'failed'], + ['value' => 4, 'generic' => 1, 'graph' => 0, 'descr' => 'degraded'], + ]; + } elseif ($value_oid == 'processorDeviceStatus' || $value_oid == 'memoryDeviceStatus') { + $states = [ + ['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'other'], + ['value' => 2, 'generic' => 3, 'graph' => 0, 'descr' => 'unknown'], + ['value' => 3, 'generic' => 0, 'graph' => 0, 'descr' => 'ok'], + ['value' => 4, 'generic' => 1, 'graph' => 0, 'descr' => 'nonCritical'], + ['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'critical'], + ['value' => 6, 'generic' => 2, 'graph' => 0, 'descr' => 'nonRecoverable'], + ]; + } elseif ($value_oid == 'voltageProbeStatus' || $value_oid == 'amperageProbeStatus' || $value_oid == 'systemBatteryStatus') { + $states = [ + ['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'other'], + ['value' => 2, 'generic' => 3, 'graph' => 0, 'descr' => 'unknown'], + ['value' => 3, 'generic' => 0, 'graph' => 0, 'descr' => 'ok'], + ['value' => 4, 'generic' => 1, 'graph' => 0, 'descr' => 'nonCriticalUpper'], + ['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'criticalUpper'], + ['value' => 6, 'generic' => 2, 'graph' => 0, 'descr' => 'nonRecoverableUpper'], + ['value' => 7, 'generic' => 1, 'graph' => 0, 'descr' => 'nonCriticalLower'], + ['value' => 8, 'generic' => 2, 'graph' => 0, 'descr' => 'criticalLower'], + ['value' => 9, 'generic' => 2, 'graph' => 0, 'descr' => 'nonRecoverableLower'], + ['value' => 10, 'generic' => 2, 'graph' => 0, 'descr' => 'failed'], + ]; } + // Create State Index + create_state_index($value_oid, $states); + foreach ($temp as $index => $entry) { - if ($state_name == 'memoryDeviceStatus') { - $descr = $temp[$index][$tablevalue[3]] . ', ' . $temp[$index]['memoryDeviceSize']/1024 . ' MB'; + if ($value_oid == 'memoryDeviceStatus') { + $descr = $entry[$descr_oid] . ', ' . $entry['memoryDeviceSize']/1024 . ' MB'; } else { - $descr = $temp[$index][$tablevalue[3]]; + $descr = $entry[$descr_oid]; } + //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid.$index, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp[$index][$tablevalue[2]], 'snmp', $index); + discover_sensor( + $valid['sensor'], + 'state', + $device, + $num_oid . $index, + $index, + $value_oid, + $descr, + 1, + 1, + null, + null, + null, + null, + $entry[$value_oid], + 'snmp', + $index + ); //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); + create_sensor_to_state_index($device, $value_oid, $index); } } } diff --git a/tests/data/drac.json b/tests/data/drac.json new file mode 100644 index 0000000000..e42cee5e14 --- /dev/null +++ b/tests/data/drac.json @@ -0,0 +1,2070 @@ +{ + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.1", + "sensor_index": "1", + "sensor_type": "drac", + "sensor_descr": "System Fan1A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4440", + "sensor_limit": "7992", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.2", + "sensor_index": "2", + "sensor_type": "drac", + "sensor_descr": "System Fan1B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3240", + "sensor_limit": "5832", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.3", + "sensor_index": "3", + "sensor_type": "drac", + "sensor_descr": "System Fan2A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3720", + "sensor_limit": "6696", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.4", + "sensor_index": "4", + "sensor_type": "drac", + "sensor_descr": "System Fan2B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3360", + "sensor_limit": "6048", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.5", + "sensor_index": "5", + "sensor_type": "drac", + "sensor_descr": "System Fan3A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4560", + "sensor_limit": "8208", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.6", + "sensor_index": "6", + "sensor_type": "drac", + "sensor_descr": "System Fan3B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4080", + "sensor_limit": "7344", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.7", + "sensor_index": "7", + "sensor_type": "drac", + "sensor_descr": "System Fan4A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4560", + "sensor_limit": "8208", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.8", + "sensor_index": "8", + "sensor_type": "drac", + "sensor_descr": "System Fan4B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4080", + "sensor_limit": "7344", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.9", + "sensor_index": "9", + "sensor_type": "drac", + "sensor_descr": "System Fan5A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3840", + "sensor_limit": "6912", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.10", + "sensor_index": "10", + "sensor_type": "drac", + "sensor_descr": "System Fan5B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3720", + "sensor_limit": "6696", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.11", + "sensor_index": "11", + "sensor_type": "drac", + "sensor_descr": "System Fan6A", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "4560", + "sensor_limit": "8208", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.12", + "sensor_index": "12", + "sensor_type": "drac", + "sensor_descr": "System Fan6B", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3480", + "sensor_limit": "6264", + "sensor_limit_warn": null, + "sensor_limit_low": "720", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.1", + "sensor_index": "1", + "sensor_type": "virtualDiskState", + "sensor_descr": "Virtual Disk 0", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "2", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "virtualDiskState" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.1", + "sensor_index": "1.1", + "sensor_type": "processorDeviceStatus", + "sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "processorDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.2", + "sensor_index": "1.2", + "sensor_type": "processorDeviceStatus", + "sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "processorDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.1", + "sensor_index": "1.1", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.A1, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.2", + "sensor_index": "1.2", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.A2, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.3", + "sensor_index": "1.3", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.A3, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.3", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.4", + "sensor_index": "1.4", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.A4, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.5", + "sensor_index": "1.5", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.B1, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.5", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.6", + "sensor_index": "1.6", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.B2, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.6", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.7", + "sensor_index": "1.7", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.B3, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.7", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.8", + "sensor_index": "1.8", + "sensor_type": "memoryDeviceStatus", + "sensor_descr": "DIMM.Socket.B4, 16384 MB", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.8", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "memoryDeviceStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.1", + "sensor_index": "1.1", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 VCORE PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.2", + "sensor_index": "1.2", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 FIVR PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.3", + "sensor_index": "1.3", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 VCORE PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.3", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.4", + "sensor_index": "1.4", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 FIVR PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.5", + "sensor_index": "1.5", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 3.3V PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.5", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.6", + "sensor_index": "1.6", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 1.5V AUX PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.6", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.7", + "sensor_index": "1.7", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 5V AUX PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.7", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.8", + "sensor_index": "1.8", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M23 VPP PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.8", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.9", + "sensor_index": "1.9", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 M23 VPP PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.9", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.10", + "sensor_index": "1.10", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 1.05V PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.10", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.11", + "sensor_index": "1.11", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 2.5V AUX PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.11", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.12", + "sensor_index": "1.12", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 5V SWITCH PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.12", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.13", + "sensor_index": "1.13", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board BP1 5V PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.13", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.14", + "sensor_index": "1.14", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board PS1 PG Fail", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.14", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.15", + "sensor_index": "1.15", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board PS2 PG Fail", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.15", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.16", + "sensor_index": "1.16", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 DIMM PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.16", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.17", + "sensor_index": "1.17", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 VCCIO PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.17", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.18", + "sensor_index": "1.18", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M01 VDDQ PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.18", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.19", + "sensor_index": "1.19", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 M01 VDDQ PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.19", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.20", + "sensor_index": "1.20", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M01 VTT PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.20", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.21", + "sensor_index": "1.21", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M23 VTT PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.21", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.22", + "sensor_index": "1.22", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M01 VPP PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.22", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.23", + "sensor_index": "1.23", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 M01 VPP PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.23", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.24", + "sensor_index": "1.24", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "System Board 1.5V PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.24", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.25", + "sensor_index": "1.25", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 M01 VTT PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.25", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.26", + "sensor_index": "1.26", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU2 M23 VDDQ PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.26", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.27", + "sensor_index": "1.27", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "CPU1 M23 VTT PG", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.27", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.28", + "sensor_index": "1.28", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "PS1 Voltage 1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.28", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.29", + "sensor_index": "1.29", + "sensor_type": "voltageProbeStatus", + "sensor_descr": "PS2 Voltage 2", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.29", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "voltageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.1", + "sensor_index": "1.1", + "sensor_type": "amperageProbeStatus", + "sensor_descr": "PS1 Current 1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "amperageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.2", + "sensor_index": "1.2", + "sensor_type": "amperageProbeStatus", + "sensor_descr": "PS2 Current 2", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "amperageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.3", + "sensor_index": "1.3", + "sensor_type": "amperageProbeStatus", + "sensor_descr": "System Board Pwr Consumption", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.3", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "amperageProbeStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.1", + "sensor_index": "1.1", + "sensor_type": "systemBatteryStatus", + "sensor_descr": "System Board CMOS Battery", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemBatteryStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.2", + "sensor_index": "1.2", + "sensor_type": "systemBatteryStatus", + "sensor_descr": "PERC1 ROMB Battery", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": "1.2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemBatteryStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.2.2.1.0", + "sensor_index": "drsGlobalSystemStatus.0", + "sensor_type": "drsGlobalSystemStatus", + "sensor_descr": "Global System Status", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "drsGlobalSystemStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.58.1", + "sensor_index": "systemStateIDSDMCardUnitStatusCombined.1", + "sensor_type": "systemStateIDSDMCardUnitStatusCombined", + "sensor_descr": "IDSDM Card Unit Combined Status", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemStateIDSDMCardUnitStatusCombined" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.60.1", + "sensor_index": "systemStateIDSDMCardDeviceStatusCombined.1", + "sensor_type": "systemStateIDSDMCardDeviceStatusCombined", + "sensor_descr": "IDSDM Card Device Combined Status", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemStateIDSDMCardDeviceStatusCombined" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.5.1.1", + "sensor_index": "intrusionStatus.1.1", + "sensor_type": "intrusionStatus", + "sensor_descr": "Intrusion Status", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "3", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "intrusionStatus" + }, + { + "sensor_deleted": "0", + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.6.1.1", + "sensor_index": "intrusionReading.1.1", + "sensor_type": "intrusionReading", + "sensor_descr": "Intrusion Reading", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "1", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "intrusionReading" + }, + { + "sensor_deleted": "0", + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.1", + "sensor_index": "1.1", + "sensor_type": "drac", + "sensor_descr": "System Board Inlet Temp", + "sensor_divisor": "10", + "sensor_multiplier": "1", + "sensor_current": "22", + "sensor_limit": "47", + "sensor_limit_warn": "42", + "sensor_limit_low": "-7", + "sensor_limit_low_warn": "0", + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.2", + "sensor_index": "1.2", + "sensor_type": "drac", + "sensor_descr": "CPU1 Temp", + "sensor_divisor": "10", + "sensor_multiplier": "1", + "sensor_current": "62", + "sensor_limit": "85", + "sensor_limit_warn": "80", + "sensor_limit_low": "3", + "sensor_limit_low_warn": "0", + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.3", + "sensor_index": "1.3", + "sensor_type": "drac", + "sensor_descr": "CPU2 Temp", + "sensor_divisor": "10", + "sensor_multiplier": "1", + "sensor_current": "60", + "sensor_limit": "85", + "sensor_limit_warn": "80", + "sensor_limit_low": "3", + "sensor_limit_low_warn": "0", + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.12.1.16.1.1", + "sensor_index": "1", + "sensor_type": "drac", + "sensor_descr": "PS1 ", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "230", + "sensor_limit": "264", + "sensor_limit_warn": null, + "sensor_limit_low": "0", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": "0", + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.12.1.16.1.2", + "sensor_index": "2", + "sensor_type": "drac", + "sensor_descr": "PS2 ", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "230", + "sensor_limit": "264", + "sensor_limit_warn": null, + "sensor_limit_low": "0", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "amperageProbeStatus", + "state_descr": "other", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "ok", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "nonCriticalUpper", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "criticalUpper", + "state_draw_graph": "0", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "nonRecoverableUpper", + "state_draw_graph": "0", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "nonCriticalLower", + "state_draw_graph": "0", + "state_value": "7", + "state_generic_value": "1" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "criticalLower", + "state_draw_graph": "0", + "state_value": "8", + "state_generic_value": "2" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "nonRecoverableLower", + "state_draw_graph": "0", + "state_value": "9", + "state_generic_value": "2" + }, + { + "state_name": "amperageProbeStatus", + "state_descr": "failed", + "state_draw_graph": "0", + "state_value": "10", + "state_generic_value": "2" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "other", + "state_draw_graph": "1", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "unknown", + "state_draw_graph": "1", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "ok", + "state_draw_graph": "1", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "nonCritical", + "state_draw_graph": "1", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "critical", + "state_draw_graph": "1", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "drsGlobalSystemStatus", + "state_descr": "nonRecoverable", + "state_draw_graph": "1", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "intrusionReading", + "state_descr": "chassisNotBreached", + "state_draw_graph": "1", + "state_value": "1", + "state_generic_value": "0" + }, + { + "state_name": "intrusionReading", + "state_descr": "chassisBreached", + "state_draw_graph": "1", + "state_value": "2", + "state_generic_value": "2" + }, + { + "state_name": "intrusionReading", + "state_descr": "chassisBreachedPrior", + "state_draw_graph": "1", + "state_value": "3", + "state_generic_value": "1" + }, + { + "state_name": "intrusionReading", + "state_descr": "chassisBreachSensorFailure", + "state_draw_graph": "1", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "intrusionStatus", + "state_descr": "other", + "state_draw_graph": "1", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "intrusionStatus", + "state_descr": "unknown", + "state_draw_graph": "1", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "intrusionStatus", + "state_descr": "ok", + "state_draw_graph": "1", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "intrusionStatus", + "state_descr": "nonCritical", + "state_draw_graph": "1", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "intrusionStatus", + "state_descr": "critical", + "state_draw_graph": "1", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "intrusionStatus", + "state_descr": "nonRecoverable", + "state_draw_graph": "1", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "other", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "ok", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "nonCritical", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "critical", + "state_draw_graph": "0", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "memoryDeviceStatus", + "state_descr": "nonRecoverable", + "state_draw_graph": "0", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "other", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "ok", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "nonCritical", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "critical", + "state_draw_graph": "0", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "processorDeviceStatus", + "state_descr": "nonRecoverable", + "state_draw_graph": "0", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "other", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "ok", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "nonCriticalUpper", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "criticalUpper", + "state_draw_graph": "0", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "nonRecoverableUpper", + "state_draw_graph": "0", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "nonCriticalLower", + "state_draw_graph": "0", + "state_value": "7", + "state_generic_value": "1" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "criticalLower", + "state_draw_graph": "0", + "state_value": "8", + "state_generic_value": "2" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "nonRecoverableLower", + "state_draw_graph": "0", + "state_value": "9", + "state_generic_value": "2" + }, + { + "state_name": "systemBatteryStatus", + "state_descr": "failed", + "state_draw_graph": "0", + "state_value": "10", + "state_generic_value": "2" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "other", + "state_draw_graph": "1", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "unknown", + "state_draw_graph": "1", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "ok", + "state_draw_graph": "1", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "nonCritical", + "state_draw_graph": "1", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "critical", + "state_draw_graph": "1", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "systemStateIDSDMCardDeviceStatusCombined", + "state_descr": "nonRecoverable", + "state_draw_graph": "1", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "other", + "state_draw_graph": "1", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "unknown", + "state_draw_graph": "1", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "ok", + "state_draw_graph": "1", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "nonCritical", + "state_draw_graph": "1", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "critical", + "state_draw_graph": "1", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "systemStateIDSDMCardUnitStatusCombined", + "state_descr": "nonRecoverable", + "state_draw_graph": "1", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "virtualDiskState", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "virtualDiskState", + "state_descr": "online", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "0" + }, + { + "state_name": "virtualDiskState", + "state_descr": "failed", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "2" + }, + { + "state_name": "virtualDiskState", + "state_descr": "degraded", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "other", + "state_draw_graph": "0", + "state_value": "1", + "state_generic_value": "3" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "unknown", + "state_draw_graph": "0", + "state_value": "2", + "state_generic_value": "3" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "ok", + "state_draw_graph": "0", + "state_value": "3", + "state_generic_value": "0" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "nonCriticalUpper", + "state_draw_graph": "0", + "state_value": "4", + "state_generic_value": "1" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "criticalUpper", + "state_draw_graph": "0", + "state_value": "5", + "state_generic_value": "2" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "nonRecoverableUpper", + "state_draw_graph": "0", + "state_value": "6", + "state_generic_value": "2" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "nonCriticalLower", + "state_draw_graph": "0", + "state_value": "7", + "state_generic_value": "1" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "criticalLower", + "state_draw_graph": "0", + "state_value": "8", + "state_generic_value": "2" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "nonRecoverableLower", + "state_draw_graph": "0", + "state_value": "9", + "state_generic_value": "2" + }, + { + "state_name": "voltageProbeStatus", + "state_descr": "failed", + "state_draw_graph": "0", + "state_value": "10", + "state_generic_value": "2" + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/drac.snmprec b/tests/snmpsim/drac.snmprec index a0387ab41a..67581f64f3 100644 --- a/tests/snmpsim/drac.snmprec +++ b/tests/snmpsim/drac.snmprec @@ -1,2 +1,580 @@ 1.3.6.1.2.1.1.1.0|4|Dell Out-of-band SNMP Agent for Remote Access Controller +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.674.10892.5 +1.3.6.1.2.1.1.3.0|67|248215339 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.4.1.674.10892.2.2.1.0|2|3 +1.3.6.1.4.1.674.10892.5.4.200.10.1.58.1|2|3 +1.3.6.1.4.1.674.10892.5.4.200.10.1.60.1|2|3 +1.3.6.1.4.1.674.10892.5.4.300.70.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.300.70.1.6.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.12.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.12.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.12.1.8.1.1|4|PS1 Status +1.3.6.1.4.1.674.10892.5.4.600.12.1.8.1.2|4|PS2 Status +1.3.6.1.4.1.674.10892.5.4.600.12.1.9.1.1|2|264 +1.3.6.1.4.1.674.10892.5.4.600.12.1.9.1.2|2|264 +1.3.6.1.4.1.674.10892.5.4.600.12.1.16.1.1|2|230 +1.3.6.1.4.1.674.10892.5.4.600.12.1.16.1.2|2|230 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.3|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.4|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.5|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.6|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.7|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.8|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.9|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.10|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.11|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.12|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.13|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.14|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.15|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.16|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.17|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.18|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.19|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.20|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.21|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.22|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.23|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.24|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.25|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.26|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.27|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.28|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.1.1.29|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.4|2|4 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.5|2|5 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.6|2|6 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.7|2|7 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.8|2|8 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.9|2|9 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.10|2|10 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.11|2|11 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.12|2|12 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.13|2|13 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.14|2|14 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.15|2|15 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.16|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.17|2|17 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.18|2|18 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.19|2|19 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.20|2|20 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.21|2|21 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.22|2|22 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.23|2|23 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.24|2|24 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.25|2|25 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.26|2|26 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.27|2|27 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.28|2|28 +1.3.6.1.4.1.674.10892.5.4.600.20.1.2.1.29|2|29 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.3|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.4|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.5|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.6|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.7|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.8|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.9|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.10|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.11|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.12|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.13|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.14|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.15|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.16|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.17|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.18|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.19|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.20|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.21|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.22|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.23|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.24|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.25|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.26|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.27|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.28|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.3.1.29|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.1|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.3|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.4|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.5|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.6|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.7|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.8|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.9|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.10|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.11|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.12|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.13|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.14|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.15|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.16|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.17|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.18|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.19|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.20|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.21|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.22|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.23|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.24|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.25|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.26|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.27|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.28|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.4.1.29|2|2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.4|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.5|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.6|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.7|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.8|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.9|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.10|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.11|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.12|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.13|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.14|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.15|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.16|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.17|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.18|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.19|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.20|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.21|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.22|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.23|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.24|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.25|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.26|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.27|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.28|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.29|2|3 +1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.28|2|230000 +1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.29|2|230000 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.1|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.2|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.3|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.4|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.5|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.6|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.7|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.8|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.9|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.10|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.11|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.12|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.13|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.14|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.15|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.16|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.17|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.18|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.19|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.20|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.21|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.22|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.23|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.24|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.25|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.26|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.27|2|16 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.28|2|18 +1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1.29|2|18 +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.1|4|CPU1 VCORE PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.2|4|CPU1 FIVR PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.3|4|CPU2 VCORE PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.4|4|CPU2 FIVR PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.5|4|System Board 3.3V PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.6|4|System Board 1.5V AUX PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.7|4|System Board 5V AUX PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.8|4|CPU2 M23 VPP PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.9|4|CPU1 M23 VPP PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.10|4|System Board 1.05V PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.11|4|System Board 2.5V AUX PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.12|4|System Board 5V SWITCH PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.13|4|System Board BP1 5V PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.14|4|System Board PS1 PG Fail +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.15|4|System Board PS2 PG Fail +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.16|4|CPU2 DIMM PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.17|4|CPU1 VCCIO PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.18|4|CPU2 M01 VDDQ PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.19|4|CPU1 M01 VDDQ PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.20|4|CPU2 M01 VTT PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.21|4|CPU2 M23 VTT PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.22|4|CPU2 M01 VPP PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.23|4|CPU1 M01 VPP PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.24|4|System Board 1.5V PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.25|4|CPU1 M01 VTT PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.26|4|CPU2 M23 VDDQ PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.27|4|CPU1 M23 VTT PG +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.28|4|PS1 Voltage 1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1.29|4|PS2 Voltage 2 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.3|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.4|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.5|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.6|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.7|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.8|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.9|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.10|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.11|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.12|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.13|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.14|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.15|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.16|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.17|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.18|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.19|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.20|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.21|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.22|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.23|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.24|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.25|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.26|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.27|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.28|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.15.1.29|2|0 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.3|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.4|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.5|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.6|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.7|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.8|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.9|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.10|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.11|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.12|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.13|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.14|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.15|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.16|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.17|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.18|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.19|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.20|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.21|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.22|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.23|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.24|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.25|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.26|2|1 +1.3.6.1.4.1.674.10892.5.4.600.20.1.16.1.27|2|1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.1.1.3|2|1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.30.1.2.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.600.30.1.3.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.3.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.3.1.3|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.4.1.1|2|2 +1.3.6.1.4.1.674.10892.5.4.600.30.1.4.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.30.1.4.1.3|2|2 +1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.600.30.1.6.1.1|2|8 +1.3.6.1.4.1.674.10892.5.4.600.30.1.6.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.6.1.3|2|168 +1.3.6.1.4.1.674.10892.5.4.600.30.1.7.1.1|2|23 +1.3.6.1.4.1.674.10892.5.4.600.30.1.7.1.2|2|23 +1.3.6.1.4.1.674.10892.5.4.600.30.1.7.1.3|2|26 +1.3.6.1.4.1.674.10892.5.4.600.30.1.8.1.1|4|PS1 Current 1 +1.3.6.1.4.1.674.10892.5.4.600.30.1.8.1.2|4|PS2 Current 2 +1.3.6.1.4.1.674.10892.5.4.600.30.1.8.1.3|4|System Board Pwr Consumption +1.3.6.1.4.1.674.10892.5.4.600.30.1.10.1.3|2|728 +1.3.6.1.4.1.674.10892.5.4.600.30.1.11.1.3|2|658 +1.3.6.1.4.1.674.10892.5.4.600.30.1.15.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.15.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.30.1.15.1.3|2|5 +1.3.6.1.4.1.674.10892.5.4.600.50.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.50.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.600.50.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.600.50.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.50.1.3.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.600.50.1.3.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.600.50.1.4.1.1|2|2 +1.3.6.1.4.1.674.10892.5.4.600.50.1.4.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.600.50.1.6.1.1|2|4 +1.3.6.1.4.1.674.10892.5.4.600.50.1.6.1.2|2|4 +1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1.1|4|System Board CMOS Battery +1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1.2|4|PERC1 ROMB Battery +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.3|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.4|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.5|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.6|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.7|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.8|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.9|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.10|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.11|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.1.1.12|2|1 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.1|2|4440 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.2|2|3240 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.3|2|3720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.4|2|3360 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.5|2|4560 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.6|2|4080 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.7|2|4560 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.8|2|4080 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.9|2|3840 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.10|2|3720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.11|2|4560 +1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.12|2|3480 +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.1|4|System Board Fan1A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.2|4|System Board Fan1B +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.3|4|System Board Fan2A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.4|4|System Board Fan2B +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.5|4|System Board Fan3A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.6|4|System Board Fan3B +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.7|4|System Board Fan4A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.8|4|System Board Fan4B +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.9|4|System Board Fan5A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.10|4|System Board Fan5B +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.11|4|System Board Fan6A +1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1.12|4|System Board Fan6B +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.1|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.2|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.3|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.4|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.5|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.6|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.7|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.8|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.9|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.10|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.11|2|720 +1.3.6.1.4.1.674.10892.5.4.700.12.1.13.1.12|2|720 +1.3.6.1.4.1.674.10892.5.4.700.20.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.700.20.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.700.20.1.5.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.1|2|220 +1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.2|2|620 +1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.3|2|600 +1.3.6.1.4.1.674.10892.5.4.700.20.1.8.1.1|4|System Board Inlet Temp +1.3.6.1.4.1.674.10892.5.4.700.20.1.8.1.2|4|CPU1 Temp +1.3.6.1.4.1.674.10892.5.4.700.20.1.8.1.3|4|CPU2 Temp +1.3.6.1.4.1.674.10892.5.4.700.20.1.10.1.1|2|470 +1.3.6.1.4.1.674.10892.5.4.700.20.1.10.1.2|2|850 +1.3.6.1.4.1.674.10892.5.4.700.20.1.10.1.3|2|850 +1.3.6.1.4.1.674.10892.5.4.700.20.1.11.1.1|2|420 +1.3.6.1.4.1.674.10892.5.4.700.20.1.11.1.2|2|800 +1.3.6.1.4.1.674.10892.5.4.700.20.1.11.1.3|2|800 +1.3.6.1.4.1.674.10892.5.4.700.20.1.12.1.1|2|30 +1.3.6.1.4.1.674.10892.5.4.700.20.1.12.1.2|2|80 +1.3.6.1.4.1.674.10892.5.4.700.20.1.12.1.3|2|80 +1.3.6.1.4.1.674.10892.5.4.700.20.1.13.1.1|2|-70 +1.3.6.1.4.1.674.10892.5.4.700.20.1.13.1.2|2|30 +1.3.6.1.4.1.674.10892.5.4.700.20.1.13.1.3|2|30 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.3.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.3.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.4.1.1|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.4.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.7.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.7.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.8.1.1|4|Intel +1.3.6.1.4.1.674.10892.5.4.1100.30.1.8.1.2|4|Intel +1.3.6.1.4.1.674.10892.5.4.1100.30.1.9.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.9.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.10.1.1|2|21 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.10.1.2|2|21 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.11.1.1|2|4000 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.11.1.2|2|4000 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.12.1.1|2|2400 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.12.1.2|2|2400 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.13.1.1|2|8000 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.13.1.2|2|8000 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.14.1.1|2|1300 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.14.1.2|2|1300 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.16.1.1|4|Model 63 Stepping 2 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.16.1.2|4|Model 63 Stepping 2 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.17.1.1|2|6 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.17.1.2|2|6 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.18.1.1|2|6 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.18.1.2|2|6 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.19.1.1|2|12 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.19.1.2|2|12 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.20.1.1|2|4 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.20.1.2|2|4 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.21.1.1|2|29 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.21.1.2|2|29 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.22.1.1|2|29 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.22.1.2|2|29 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.23.1.1|4|Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz +1.3.6.1.4.1.674.10892.5.4.1100.30.1.23.1.2|4|Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz +1.3.6.1.4.1.674.10892.5.4.1100.30.1.26.1.1|4|CPU.Socket.1 +1.3.6.1.4.1.674.10892.5.4.1100.30.1.26.1.2|4|CPU.Socket.2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.2|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.3|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.4|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.5|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.6|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.7|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.1.1.8|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.1|2|1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.4|2|4 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.5|2|5 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.6|2|6 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.7|2|7 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.2.1.8|2|8 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.3|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.4|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.5|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.6|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.7|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.3.1.8|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.1|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.2|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.3|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.4|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.5|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.6|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.7|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.4.1.8|2|2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.1|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.2|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.3|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.4|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.5|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.6|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.7|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.8|2|3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.1|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.2|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.3|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.4|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.5|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.6|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.7|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.7.1.8|2|26 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.1|4|DIMM.Socket.A1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.2|4|DIMM.Socket.A2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.3|4|DIMM.Socket.A3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.4|4|DIMM.Socket.A4 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.5|4|DIMM.Socket.B1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.6|4|DIMM.Socket.B2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.7|4|DIMM.Socket.B3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1.8|4|DIMM.Socket.B4 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.1|4|A +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.2|4|A +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.3|4|A +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.4|4|A +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.5|4|B +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.6|4|B +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.7|4|B +1.3.6.1.4.1.674.10892.5.4.1100.50.1.10.1.8|4|B +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.1|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.2|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.3|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.4|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.5|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.6|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.7|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.8|2|16777216 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.1|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.2|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.3|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.4|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.5|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.6|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.7|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.8|2|0 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.1|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.2|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.3|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.4|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.5|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.6|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.7|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.8|4|Hynix Semiconductor +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.1|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.2|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.3|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.4|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.5|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.6|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.7|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.8|4|HMA42GR7AFR4N-TF +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.1|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.2|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.3|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.4|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.5|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.6|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.7|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.8|4|12345678 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.1|4|DIMM.Socket.A1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.2|4|DIMM.Socket.A2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.3|4|DIMM.Socket.A3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.4|4|DIMM.Socket.A4 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.5|4|DIMM.Socket.B1 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.6|4|DIMM.Socket.B2 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.7|4|DIMM.Socket.B3 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.26.1.8|4|DIMM.Socket.B4 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.1|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.2|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.3|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.4|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.5|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.6|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.7|2|1866 +1.3.6.1.4.1.674.10892.5.4.1100.50.1.27.1.8|2|1866 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1.1|2|1 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2.1|4|Virtual Disk 0 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.1|2|2 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.1|2|2288128 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.1|2|2 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.1|2|2 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.1|2|6 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.14.1|2|10 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20.1|2|3 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.23.1|2|0 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.24.1|2|0 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.25.1|2|0 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.26.1|2|3 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.1|2|1 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.31.1|2|0 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.32.1|4|SAS +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.33.1|4|HDD +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.34.1|2|1 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.35.1|4|Disk.Virtual.0:RAID.Integrated.1-1 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.36.1|4|Virtual Disk 0 on Integrated RAID Controller 1 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.37.1|2|3 +1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.38.1|2|512 +1.3.6.1.6.3.10.2.1.3.0|2|2482153 11.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10