diff --git a/LibreNMS/OS/Gaia.php b/LibreNMS/OS/Gaia.php new file mode 100644 index 0000000000..29ce9aaf87 --- /dev/null +++ b/LibreNMS/OS/Gaia.php @@ -0,0 +1,83 @@ +getDeviceArray(), $oids, '-OQUs', 'CHECKPOINT-MIB'); + + //############# + // Create firewall lograte/handlingrate rrd + //############# + if (is_numeric($data[0]['fwLoggingHandlingRate'])) { + $rrd_def = RrdDefinition::make()->addDataset('fwlograte', 'GAUGE', 0); + + $fields = [ + 'fwlograte' => $data[0]['fwLoggingHandlingRate'], + ]; + + $tags = compact('rrd_def'); + data_update($this->getDeviceArray(), 'gaia_firewall_lograte', $tags, $fields); + $this->enableGraph('gaia_firewall_lograte'); + } + + //############# + // Create MGMT logserver lograte rrd + //############# + if (is_numeric($data[0]['mgLSLogReceiveRate'])) { + $rrd_def = RrdDefinition::make()->addDataset('LogReceiveRate', 'GAUGE', 0); + + $fields = [ + 'LogReceiveRate' => $data[0]['mgLSLogReceiveRate'], + ]; + + $tags = compact('rrd_def'); + data_update($this->getDeviceArray(), 'gaia_logserver_lograte', $tags, $fields); + $this->enableGraph('gaia_logserver_lograte'); + } + + //############# + // Create firewall active connections rrd + //############# + if (is_numeric($data[0]['fwNumConn'])) { + $rrd_def = RrdDefinition::make()->addDataset('NumConn', 'GAUGE', 0); + + $fields = [ + 'NumConn' => $data[0]['fwNumConn'], + ]; + + $tags = compact('rrd_def'); + data_update($this->getDeviceArray(), 'gaia_connections', $tags, $fields); + $this->enableGraph('gaia_connections'); + } + + //############# + // Create firewall packets rrd + //############# + if (is_numeric($data[0]['fwAccepted']) && is_numeric($data[0]['fwRejected']) && is_numeric($data[0]['fwDropped']) && is_numeric($data[0]['fwLogged'])) { + $rrd_def = RrdDefinition::make() + ->addDataset('accepted', 'DERIVE', 0) + ->addDataset('rejected', 'DERIVE', 0) + ->addDataset('dropped', 'DERIVE', 0) + ->addDataset('logged', 'DERIVE', 0); + + $fields = [ + 'accepted' => $data[0]['fwAccepted'], + 'rejected' => $data[0]['fwRejected'], + 'dropped' => $data[0]['fwDropped'], + 'logged' => $data[0]['fwLogged'], + ]; + + $tags = compact('rrd_def'); + data_update($this->getDeviceArray(), 'gaia_firewall_packets', $tags, $fields); + $this->enableGraph('gaia_firewall_packets'); + } + } +} diff --git a/includes/definitions/discovery/gaia.yaml b/includes/definitions/discovery/gaia.yaml index 1ec80b9352..9a76bc8d4d 100644 --- a/includes/definitions/discovery/gaia.yaml +++ b/includes/definitions/discovery/gaia.yaml @@ -12,6 +12,7 @@ modules: - tempertureSensorName - fanSpeedSensorName - voltageSensorName + - fwLSConnName state: data: - @@ -77,6 +78,207 @@ modules: - { value: 0, descr: Up , graph: 2, generic: 0 } - { value: 1, descr: Attention, graph: 1, generic: 3 } - { value: 2, descr: Down, graph: 0, generic: 1 } + - + oid: raidVolumeState + num_oid: '.1.3.6.1.4.1.2620.1.6.7.7.1.1.6.{{ $index }}' + index: 'raidVolumeState.{{ $index }}' + descr: 'RAID Status' + group: RAID + value: raidVolumeState + states: + - { value: 0, descr: OPTIMAL, graph: 3, generic: 0 } + - { value: 1, descr: DEGRADED, graph: 2, generic: 1 } + - { value: 2, descr: FAILED, graph: 1, generic: 2} + - { value: -1, descr: 'Unknown', graph: 0, generic: 3} + - + oid: raidVolumeType + num_oid: '.1.3.6.1.4.1.2620.1.6.7.7.1.1.3.{{ $index }}' + index: 'raidVolumeType.{{ $index }}' + descr: 'RAID Type' + group: RAID + value: raidVolumeType + states: + - { value: 0, descr: 'RAID-0', graph: 8, generic: 0 } + - { value: 1, descr: 'RAID-1E', graph: 7, generic: 0 } + - { value: 2, descr: 'RAID-1', graph: 6, generic: 0 } + - { value: 3, descr: 'RAID-10', graph: 5, generic: 0 } + - { value: 4, descr: 'RAID-4', graph: 4, generic: 0 } + - { value: 5, descr: 'RAID-5', graph: 3, generic: 0 } + - { value: 6, descr: 'RAID-6', graph: 2, generic: 0 } + - { value: 7, descr: 'RAID-60', graph: 1, generic: 0 } + - { value: 8, descr: 'RAID-50', graph: 0, generic: 0 } + - + oid: fwLSConnOverall + num_oid: '.1.3.6.1.4.1.2620.1.1.30.1.{{ $index }}' + index: 'fwLSConnOverall.{{ $index }}' + descr: 'Log Server Connectivity' + group: Logging + value: fwLSConnOverall + states: + - {value: 0, descr: 'Ok', graph: 2, generic: 0} + - {value: 1, descr: 'Warning', graph: 1, generic: 1} + - {value: 2, descr: 'Error', graph: 0, generic: 2} + - + oid: fwLSConnState + num_oid: '.1.3.6.1.4.1.2620.1.1.30.3.1.3.{{ $index }}' + index: 'fwLSConnState.{{ $index }}' + descr: '{{ $fwLSConnName }}, Log Server Connectivity' + group: Logging + value: fwLSConnState + states: + - {value: 0, descr: 'Ok', graph: 2, generic: 0} + - {value: 1, descr: 'Error', graph: 1, generic: 2} + - {value: 2, descr: 'Not Active', graph: 0, generic: 2} + - + oid: fwLocalLoggingStat + num_oid: '.1.3.6.1.4.1.2620.1.1.30.5.{{ $index }}' + index: 'fwLocalLoggingStat.{{ $index }}' + descr: 'Local Log Server Status' + group: Logging + value: fwLocalLoggingStat + states: + - {value: 0, descr: 'To log servers', graph: 3, generic: 0} + - {value: 1, descr: 'Local configured', graph: 2, generic: 0} + - {value: 2, descr: 'Local due to connectivity', graph: 1, generic: 2} + - {value: 3, descr: 'Local due to high rate', graph: 0, generic: 2} + - + oid: mgStatCode + num_oid: '.1.3.6.1.4.1.2620.1.7.101.{{ $index }}' + index: 'mgStatCode.{{ $index }}' + descr: 'Management Sync Status' + group: HA + states: + - { value: 0, descr: 'OK', graph: 0, generic: 0 } + - { value: 1, descr: 'Attention', graph: 1, generic: 1 } + - { value: 2, descr: 'Problem', graph: 2, generic: 2} + - + oid: mgActiveStatus + num_oid: '.1.3.6.1.4.1.2620.1.7.5.{{ $index }}' + index: 'mgActiveStatus.{{ $index }}' + descr: 'SMS Status' + group: HA + states: + - { value: 1, generic: 0, graph: 1, descr: 'active' } + - { value: 2, generic: 0, graph: 1, descr: 'standby' } + - + oid: mgFwmIsAlive + num_oid: '.1.3.6.1.4.1.2620.1.7.6.{{ $index }}' + index: 'mgFwmIsAlive.{{ $index }}' + descr: 'FWM Daemon Status' + group: HA + states: + - { value: 0, generic: 1, graph: 1, descr: 'down' } + - { value: 1, generic: 0, graph: 1, descr: 'up' } +#Update Status + - + oid: advancedUrlFilteringUpdateStatus + num_oid: '.1.3.6.1.4.1.2620.1.43.2.1.{{ $index }}' + index: 'advancedUrlFilteringUpdateStatus.{{ $index }}' + descr: 'URL Filtering Update' + group: Update + states: + - { value: 0, generic: 2, graph: 1, descr: 'failed' } + - { value: 1, generic: 0, graph: 1, descr: 'up-to-date' } + - { value: 2, generic: 0, graph: 1, descr: 'new' } + - { value: 3, generic: 1, graph: 1, descr: 'degrade' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: applicationControlUpdateStatus + num_oid: '.1.3.6.1.4.1.2620.1.39.2.1.{{ $index }}' + index: 'applicationControlUpdateStatus.{{ $index }}' + descr: 'Application Control Update' + group: Update + states: + - { value: 0, generic: 2, graph: 1, descr: 'failed' } + - { value: 1, generic: 0, graph: 1, descr: 'up-to-date' } + - { value: 2, generic: 0, graph: 1, descr: 'new' } + - { value: 3, generic: 1, graph: 1, descr: 'degrade' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: amwAVUpdateStatus + num_oid: '.1.3.6.1.4.1.2620.1.46.5.1.{{ $index }}' + index: 'amwAVUpdateStatus.{{ $index }}' + descr: 'Anti Virus Update' + group: Update + states: + - { value: 0, generic: 2, graph: 1, descr: 'failed' } + - { value: 1, generic: 0, graph: 1, descr: 'up-to-date' } + - { value: 2, generic: 0, graph: 1, descr: 'new' } + - { value: 3, generic: 1, graph: 1, descr: 'degrade' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: amwABUpdateStatus + num_oid: '.1.3.6.1.4.1.2620.1.46.1.1.{{ $index }}' + index: 'amwABUpdateStatus.{{ $index }}' + descr: 'Anti Malware Update' + group: Update + states: + - { value: 0, generic: 2, graph: 1, descr: 'failed' } + - { value: 1, generic: 0, graph: 1, descr: 'up-to-date' } + - { value: 2, generic: 0, graph: 1, descr: 'new' } + - { value: 3, generic: 1, graph: 1, descr: 'degrade' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } +#Subscriptions + - + oid: advancedUrlFilteringSubscriptionStatus + num_oid: '.1.3.6.1.4.1.2620.1.43.1.1.{{ $index }}' + index: 'advancedUrlFilteringSubscriptionStatus.{{ $index }}' + descr: 'URL Filtering Subscription' + group: Licenses + states: + - { value: 0, generic: 0, graph: 1, descr: 'valid' } + - { value: 1, generic: 2, graph: 1, descr: 'expired' } + - { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' } + - { value: 3, generic: 0, graph: 1, descr: 'not-associated' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: applicationControlSubscriptionStatus + num_oid: '.1.3.6.1.4.1.2620.1.39.1.1.{{ $index }}' + index: 'applicationControlSubscriptionStatus.{{ $index }}' + descr: 'Application Control Subscription' + group: Licenses + states: + - { value: 0, generic: 0, graph: 1, descr: 'valid' } + - { value: 1, generic: 2, graph: 1, descr: 'expired' } + - { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' } + - { value: 3, generic: 0, graph: 1, descr: 'not-associated' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: antiVirusSubscriptionStatus + num_oid: '.1.3.6.1.4.1.2620.1.46.3.1.{{ $index }}' + index: 'antiVirusSubscriptionStatus.{{ $index }}' + descr: 'Anti Virus Subscription' + group: Licenses + states: + - { value: 0, generic: 0, graph: 1, descr: 'valid' } + - { value: 1, generic: 2, graph: 1, descr: 'expired' } + - { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' } + - { value: 3, generic: 0, graph: 1, descr: 'not-associated' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: antiBotSubscriptionStatus + num_oid: '.1.3.6.1.4.1.2620.1.46.2.1.{{ $index }}' + index: 'antiBotSubscriptionStatus.{{ $index }}' + descr: 'Anti Bot Subscription' + group: Licenses + states: + - { value: 0, generic: 0, graph: 1, descr: 'valid' } + - { value: 1, generic: 2, graph: 1, descr: 'expired' } + - { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' } + - { value: 3, generic: 0, graph: 1, descr: 'not-associated' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } + - + oid: antiSpamSubscriptionStatus + num_oid: '.1.3.6.1.4.1.2620.1.46.4.1.{{ $index }}' + index: 'antiSpamSubscriptionStatus.{{ $index }}' + descr: 'Anti Spam Subscription' + group: Licenses + states: + - { value: 0, generic: 0, graph: 1, descr: 'valid' } + - { value: 1, generic: 2, graph: 1, descr: 'expired' } + - { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' } + - { value: 3, generic: 0, graph: 1, descr: 'not-associated' } + - { value: 4, generic: 3, graph: 1, descr: 'unknown' } temperature: data: - diff --git a/includes/html/graphs/device/gaia_connections.inc.php b/includes/html/graphs/device/gaia_connections.inc.php new file mode 100644 index 0000000000..b115670b91 --- /dev/null +++ b/includes/html/graphs/device/gaia_connections.inc.php @@ -0,0 +1,13 @@ + '#74C366FF', + 'rejected' => '#007283FF', + 'dropped' => '#FFAB00FF', + 'logged' => '#B1441EFF', +]; + +$i = 0; +foreach ($stats as $stat => $color) { + $rrd_list[$i]['filename'] = $rrd_filename; + $rrd_list[$i]['descr'] = ucfirst($stat); + $rrd_list[$i]['ds'] = $stat; + + // Set up DEFs + $rrd_options .= ' DEF:' . $stat . '=' . $rrd_filename . ':' . $stat . ':AVERAGE '; + + // Set up area graphing with stacking + if ($i == '0') { + $rrd_options .= " 'AREA:" . $stat . $color . ':' . $stat . "'"; + } else { + $rrd_options .= " 'AREA:" . $stat . $color . ':' . $stat . ":STACK'"; + } + + // Set up legend, with consistent indent + $filler = 15 - strlen($stat); + $current_pad = str_pad('', $filler, ' ', STR_PAD_LEFT); + $rrd_options .= " 'GPRINT:" . $stat . ':LAST: ' . $current_pad . "Current\:%8.0lf'"; + $rrd_options .= " 'GPRINT:" . $stat . ":AVERAGE:Average\:%8.0lf'"; + $rrd_options .= " 'GPRINT:" . $stat . ":MAX:Maximum\:%8.0lf\\n'"; + + $i++; +} + +// Add total value +$rrd_options .= " 'CDEF:total=accepted,rejected,dropped,logged,+,+,+'"; +$rrd_options .= " 'LINE1:total#000000FF:Total'"; +$filler = 16 - strlen('Total'); +$current_pad = str_pad('', $filler, ' ', STR_PAD_LEFT); +$rrd_options .= " 'GPRINT:total:LAST:" . $current_pad . "Current\:%8.0lf'"; +$rrd_options .= " 'GPRINT:total:AVERAGE:Average\:%8.0lf'"; +$rrd_options .= " 'GPRINT:total:MAX:Maximum\:%8.0lf\\n'"; diff --git a/includes/html/graphs/device/gaia_logserver_lograte.inc.php b/includes/html/graphs/device/gaia_logserver_lograte.inc.php new file mode 100644 index 0000000000..7172aba193 --- /dev/null +++ b/includes/html/graphs/device/gaia_logserver_lograte.inc.php @@ -0,0 +1,13 @@ +", + "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", + "sysDescr": "Linux vsx123 2.6.18-92cpx86_64 #1 SMP Tue Sep 8 20:04:48 IDT 2020 x86_64", + "sysContact": "", + "version": "R80.30", + "hardware": "Check Point 23900", + "features": null, + "os": "gaia", + "type": "firewall", + "serial": "LR123456789", + "icon": "checkpoint.png", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.43.1.1.0", + "sensor_index": "advancedUrlFilteringSubscriptionStatus.0", + "sensor_type": "advancedUrlFilteringSubscriptionStatus", + "sensor_descr": "URL Filtering Subscription", + "group": "Licenses", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "advancedUrlFilteringSubscriptionStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.43.2.1.0", + "sensor_index": "advancedUrlFilteringUpdateStatus.0", + "sensor_type": "advancedUrlFilteringUpdateStatus", + "sensor_descr": "URL Filtering Update", + "group": "Update", + "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": "advancedUrlFilteringUpdateStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.46.1.1.0", + "sensor_index": "amwABUpdateStatus.0", + "sensor_type": "amwABUpdateStatus", + "sensor_descr": "Anti Malware Update", + "group": "Update", + "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": "amwABUpdateStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.46.5.1.0", + "sensor_index": "amwAVUpdateStatus.0", + "sensor_type": "amwAVUpdateStatus", + "sensor_descr": "Anti Virus Update", + "group": "Update", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "amwAVUpdateStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.46.2.1.0", + "sensor_index": "antiBotSubscriptionStatus.0", + "sensor_type": "antiBotSubscriptionStatus", + "sensor_descr": "Anti Bot Subscription", + "group": "Licenses", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "antiBotSubscriptionStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.46.3.1.0", + "sensor_index": "antiVirusSubscriptionStatus.0", + "sensor_type": "antiVirusSubscriptionStatus", + "sensor_descr": "Anti Virus Subscription", + "group": "Licenses", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "antiVirusSubscriptionStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.39.1.1.0", + "sensor_index": "applicationControlSubscriptionStatus.0", + "sensor_type": "applicationControlSubscriptionStatus", + "sensor_descr": "Application Control Subscription", + "group": "Licenses", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "applicationControlSubscriptionStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.39.2.1.0", + "sensor_index": "applicationControlUpdateStatus.0", + "sensor_type": "applicationControlUpdateStatus", + "sensor_descr": "Application Control Update", + "group": "Update", + "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": "applicationControlUpdateStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.5.0", + "sensor_index": "fwLocalLoggingStat.0", + "sensor_type": "fwLocalLoggingStat", + "sensor_descr": "Local Log Server Status", + "group": "Logging", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fwLocalLoggingStat" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.1.0", + "sensor_index": "fwLSConnOverall.0", + "sensor_type": "fwLSConnOverall", + "sensor_descr": "Log Server Connectivity", + "group": "Logging", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fwLSConnOverall" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.3.1.3.1.0", + "sensor_index": "fwLSConnState.1.0", + "sensor_type": "fwLSConnState", + "sensor_descr": "10.10.10.10, Log Server Connectivity", + "group": "Logging", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fwLSConnState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.3.1.3.2.0", + "sensor_index": "fwLSConnState.2.0", + "sensor_type": "fwLSConnState", + "sensor_descr": "11.11.11.11, Log Server Connectivity", + "group": "Logging", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fwLSConnState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.5.5.0", + "sensor_index": "haStarted.0", + "sensor_type": "haStarted", + "sensor_descr": "Cluster mechanism started", + "group": "HA", + "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": "haStarted" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.5.101.0", + "sensor_index": "haStatCode.0", + "sensor_type": "haStatCode", + "sensor_descr": "Cluster member status code", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "haStatCode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.5.6.0", + "sensor_index": "haState.0", + "sensor_type": "haState", + "sensor_descr": "Cluster member state", + "group": "HA", + "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": "haState" + } + ], + "state_indexes": [ + { + "state_name": "advancedUrlFilteringSubscriptionStatus", + "state_descr": "valid", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "advancedUrlFilteringSubscriptionStatus", + "state_descr": "expired", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "advancedUrlFilteringSubscriptionStatus", + "state_descr": "about-to-expire", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "advancedUrlFilteringSubscriptionStatus", + "state_descr": "not-associated", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "advancedUrlFilteringSubscriptionStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "advancedUrlFilteringUpdateStatus", + "state_descr": "failed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "advancedUrlFilteringUpdateStatus", + "state_descr": "up-to-date", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "advancedUrlFilteringUpdateStatus", + "state_descr": "new", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "advancedUrlFilteringUpdateStatus", + "state_descr": "degrade", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "advancedUrlFilteringUpdateStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "amwABUpdateStatus", + "state_descr": "failed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "amwABUpdateStatus", + "state_descr": "up-to-date", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "amwABUpdateStatus", + "state_descr": "new", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "amwABUpdateStatus", + "state_descr": "degrade", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "amwABUpdateStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "amwAVUpdateStatus", + "state_descr": "failed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "amwAVUpdateStatus", + "state_descr": "up-to-date", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "amwAVUpdateStatus", + "state_descr": "new", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "amwAVUpdateStatus", + "state_descr": "degrade", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "amwAVUpdateStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "antiBotSubscriptionStatus", + "state_descr": "valid", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "antiBotSubscriptionStatus", + "state_descr": "expired", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "antiBotSubscriptionStatus", + "state_descr": "about-to-expire", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "antiBotSubscriptionStatus", + "state_descr": "not-associated", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "antiBotSubscriptionStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "antiVirusSubscriptionStatus", + "state_descr": "valid", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "antiVirusSubscriptionStatus", + "state_descr": "expired", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "antiVirusSubscriptionStatus", + "state_descr": "about-to-expire", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "antiVirusSubscriptionStatus", + "state_descr": "not-associated", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "antiVirusSubscriptionStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "applicationControlSubscriptionStatus", + "state_descr": "valid", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "applicationControlSubscriptionStatus", + "state_descr": "expired", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "applicationControlSubscriptionStatus", + "state_descr": "about-to-expire", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "applicationControlSubscriptionStatus", + "state_descr": "not-associated", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "applicationControlSubscriptionStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "applicationControlUpdateStatus", + "state_descr": "failed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "applicationControlUpdateStatus", + "state_descr": "up-to-date", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "applicationControlUpdateStatus", + "state_descr": "new", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "applicationControlUpdateStatus", + "state_descr": "degrade", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "applicationControlUpdateStatus", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "fwLocalLoggingStat", + "state_descr": "To log servers", + "state_draw_graph": 3, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fwLocalLoggingStat", + "state_descr": "Local configured", + "state_draw_graph": 2, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "fwLocalLoggingStat", + "state_descr": "Local due to connectivity", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "fwLocalLoggingStat", + "state_descr": "Local due to high rate", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "fwLSConnOverall", + "state_descr": "Ok", + "state_draw_graph": 2, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fwLSConnOverall", + "state_descr": "Warning", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 1 + }, + { + "state_name": "fwLSConnOverall", + "state_descr": "Error", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "fwLSConnState", + "state_descr": "Ok", + "state_draw_graph": 2, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fwLSConnState", + "state_descr": "Error", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fwLSConnState", + "state_descr": "Not Active", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "haStarted", + "state_descr": "no", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "haStarted", + "state_descr": "yes", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "haStatCode", + "state_descr": "Up", + "state_draw_graph": 2, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "haStatCode", + "state_descr": "Attention", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "haStatCode", + "state_descr": "Down", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "haState", + "state_descr": "down", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "haState", + "state_descr": "active", + "state_draw_graph": 3, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "haState", + "state_descr": "standby", + "state_draw_graph": 2, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "haState", + "state_descr": "active attention", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/data/gaia_logserver.json b/tests/data/gaia_logserver.json new file mode 100644 index 0000000000..82d1615aa4 --- /dev/null +++ b/tests/data/gaia_logserver.json @@ -0,0 +1,2499 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2620.1.6.123.1.49", + "sysDescr": "Linux fw-log 3.10.0-957.5.1cpx86_64 #1 SMP Tue Sep 8 20:25:16 IDT 2020 x86_64", + "sysContact": "", + "version": "R80.30", + "hardware": "ProLiant DL380 Gen9", + "features": null, + "os": "gaia", + "type": "firewall", + "serial": null, + "icon": "checkpoint.png", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.1.0", + "sensor_index": "fanSpeedSensorValue.1.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.15, + "sensor_limit": 21.87, + "sensor_limit_warn": null, + "sensor_limit_low": 9.72, + "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.2620.1.6.7.8.2.1.3.10.0", + "sensor_index": "fanSpeedSensorValue.10.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.11.0", + "sensor_index": "fanSpeedSensorValue.11.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 4 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.12.0", + "sensor_index": "fanSpeedSensorValue.12.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 4 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.13.0", + "sensor_index": "fanSpeedSensorValue.13.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.14.0", + "sensor_index": "fanSpeedSensorValue.14.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 5 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.15.0", + "sensor_index": "fanSpeedSensorValue.15.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 5 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.16.0", + "sensor_index": "fanSpeedSensorValue.16.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.17.0", + "sensor_index": "fanSpeedSensorValue.17.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 6 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20.38, + "sensor_limit": 36.684, + "sensor_limit_warn": null, + "sensor_limit_low": 16.304, + "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.2620.1.6.7.8.2.1.3.18.0", + "sensor_index": "fanSpeedSensorValue.18.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 6 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.19.0", + "sensor_index": "fanSpeedSensorValue.19.0", + "sensor_type": "gaia", + "sensor_descr": "Fans", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.2.0", + "sensor_index": "fanSpeedSensorValue.2.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 1 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.15, + "sensor_limit": 21.87, + "sensor_limit_warn": null, + "sensor_limit_low": 9.72, + "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.2620.1.6.7.8.2.1.3.3.0", + "sensor_index": "fanSpeedSensorValue.3.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 1 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.4.0", + "sensor_index": "fanSpeedSensorValue.4.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 15.29, + "sensor_limit": 27.522, + "sensor_limit_warn": null, + "sensor_limit_low": 12.232, + "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.2620.1.6.7.8.2.1.3.5.0", + "sensor_index": "fanSpeedSensorValue.5.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 2 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 15.29, + "sensor_limit": 27.522, + "sensor_limit_warn": null, + "sensor_limit_low": 12.232, + "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.2620.1.6.7.8.2.1.3.6.0", + "sensor_index": "fanSpeedSensorValue.6.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 2 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.3.7.0", + "sensor_index": "fanSpeedSensorValue.7.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16.07, + "sensor_limit": 28.926, + "sensor_limit_warn": null, + "sensor_limit_low": 12.856, + "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.2620.1.6.7.8.2.1.3.8.0", + "sensor_index": "fanSpeedSensorValue.8.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 3 DutyCycle", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16.07, + "sensor_limit": 28.926, + "sensor_limit_warn": null, + "sensor_limit_low": 12.856, + "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.2620.1.6.7.8.2.1.3.9.0", + "sensor_index": "fanSpeedSensorValue.9.0", + "sensor_type": "gaia", + "sensor_descr": "Fan 3 Presence", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.1.0", + "sensor_index": "fanSpeedSensorStatus.1.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 1, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.10.0", + "sensor_index": "fanSpeedSensorStatus.10.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 4, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.11.0", + "sensor_index": "fanSpeedSensorStatus.11.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 4 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.12.0", + "sensor_index": "fanSpeedSensorStatus.12.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 4 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.13.0", + "sensor_index": "fanSpeedSensorStatus.13.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 5, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.14.0", + "sensor_index": "fanSpeedSensorStatus.14.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 5 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.15.0", + "sensor_index": "fanSpeedSensorStatus.15.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 5 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.16.0", + "sensor_index": "fanSpeedSensorStatus.16.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 6, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.17.0", + "sensor_index": "fanSpeedSensorStatus.17.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 6 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.18.0", + "sensor_index": "fanSpeedSensorStatus.18.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 6 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.19.0", + "sensor_index": "fanSpeedSensorStatus.19.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fans, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.2.0", + "sensor_index": "fanSpeedSensorStatus.2.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 1 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.3.0", + "sensor_index": "fanSpeedSensorStatus.3.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 1 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.4.0", + "sensor_index": "fanSpeedSensorStatus.4.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 2, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.5.0", + "sensor_index": "fanSpeedSensorStatus.5.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 2 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.6.0", + "sensor_index": "fanSpeedSensorStatus.6.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 2 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.7.0", + "sensor_index": "fanSpeedSensorStatus.7.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 3, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.8.0", + "sensor_index": "fanSpeedSensorStatus.8.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 3 DutyCycle, Fanspeed Out Of Range", + "group": null, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.9.0", + "sensor_index": "fanSpeedSensorStatus.9.0", + "sensor_type": "fanSpeedSensorStatus", + "sensor_descr": "Fan 3 Presence, Fanspeed Out Of Range", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "fanSpeedSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.7.5.0", + "sensor_index": "mgActiveStatus.0", + "sensor_type": "mgActiveStatus", + "sensor_descr": "SMS Status", + "group": "HA", + "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": "mgActiveStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.7.6.0", + "sensor_index": "mgFwmIsAlive.0", + "sensor_type": "mgFwmIsAlive", + "sensor_descr": "FWM Daemon Status", + "group": "HA", + "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": "mgFwmIsAlive" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.7.101.0", + "sensor_index": "mgStatCode.0", + "sensor_type": "mgStatCode", + "sensor_descr": "Management Sync Status", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "mgStatCode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.1.0", + "sensor_index": "tempertureSensorStatus.1.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "01-Inlet Ambient, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.10.0", + "sensor_index": "tempertureSensorStatus.10.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "13-VR P1, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.11.0", + "sensor_index": "tempertureSensorStatus.11.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "14-VR P2, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.12.0", + "sensor_index": "tempertureSensorStatus.12.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "15-VR P1 Mem, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.13.0", + "sensor_index": "tempertureSensorStatus.13.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "16-VR P1 Mem, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.14.0", + "sensor_index": "tempertureSensorStatus.14.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "17-VR P2 Mem, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.15.0", + "sensor_index": "tempertureSensorStatus.15.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "18-VR P2 Mem, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.16.0", + "sensor_index": "tempertureSensorStatus.16.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "19-PS 1 Internal, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.17.0", + "sensor_index": "tempertureSensorStatus.17.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "20-PS 2 Internal, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.18.0", + "sensor_index": "tempertureSensorStatus.18.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "27-HD Controller, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.19.0", + "sensor_index": "tempertureSensorStatus.19.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "30-Front Ambient, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.2.0", + "sensor_index": "tempertureSensorStatus.2.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "02-CPU 1, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.20.0", + "sensor_index": "tempertureSensorStatus.20.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "31-PCI 1 Zone., Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.21.0", + "sensor_index": "tempertureSensorStatus.21.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "32-PCI 2 Zone., Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.22.0", + "sensor_index": "tempertureSensorStatus.22.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "33-PCI 3 Zone., Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.23.0", + "sensor_index": "tempertureSensorStatus.23.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "37-HD Cntlr Zone, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.24.0", + "sensor_index": "tempertureSensorStatus.24.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "38-I/O Zone, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.25.0", + "sensor_index": "tempertureSensorStatus.25.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "39-P/S 2 Zone, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.26.0", + "sensor_index": "tempertureSensorStatus.26.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "40-Battery Zone, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.27.0", + "sensor_index": "tempertureSensorStatus.27.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "41-iLO Zone, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.28.0", + "sensor_index": "tempertureSensorStatus.28.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "43-Storage Batt, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.29.0", + "sensor_index": "tempertureSensorStatus.29.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "44-Fuse, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.3.0", + "sensor_index": "tempertureSensorStatus.3.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "03-CPU 2, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.4.0", + "sensor_index": "tempertureSensorStatus.4.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "05-P1 DIMM 7-12, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.5.0", + "sensor_index": "tempertureSensorStatus.5.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "07-P2 DIMM 7-12, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.6.0", + "sensor_index": "tempertureSensorStatus.6.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "08-HD Max, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.7.0", + "sensor_index": "tempertureSensorStatus.7.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "10-Chipset, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.8.0", + "sensor_index": "tempertureSensorStatus.8.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "11-PS 1 Inlet, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.6.9.0", + "sensor_index": "tempertureSensorStatus.9.0", + "sensor_type": "tempertureSensorStatus", + "sensor_descr": "12-PS 2 Inlet, Temperature Out Of Range", + "group": null, + "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": "tempertureSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.1.0", + "sensor_index": "tempertureSensorValue.1.0", + "sensor_type": "gaia", + "sensor_descr": "01-Inlet Ambient", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 18, + "sensor_limit": 38, + "sensor_limit_warn": null, + "sensor_limit_low": 8, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.10.0", + "sensor_index": "tempertureSensorValue.10.0", + "sensor_type": "gaia", + "sensor_descr": "13-VR P1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 56, + "sensor_limit_warn": null, + "sensor_limit_low": 26, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.11.0", + "sensor_index": "tempertureSensorValue.11.0", + "sensor_type": "gaia", + "sensor_descr": "14-VR P2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 57, + "sensor_limit_warn": null, + "sensor_limit_low": 27, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.12.0", + "sensor_index": "tempertureSensorValue.12.0", + "sensor_type": "gaia", + "sensor_descr": "15-VR P1 Mem", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.13.0", + "sensor_index": "tempertureSensorValue.13.0", + "sensor_type": "gaia", + "sensor_descr": "16-VR P1 Mem", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 50, + "sensor_limit_warn": null, + "sensor_limit_low": 20, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.14.0", + "sensor_index": "tempertureSensorValue.14.0", + "sensor_type": "gaia", + "sensor_descr": "17-VR P2 Mem", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.15.0", + "sensor_index": "tempertureSensorValue.15.0", + "sensor_type": "gaia", + "sensor_descr": "18-VR P2 Mem", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 50, + "sensor_limit_warn": null, + "sensor_limit_low": 20, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.16.0", + "sensor_index": "tempertureSensorValue.16.0", + "sensor_type": "gaia", + "sensor_descr": "19-PS 1 Internal", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.17.0", + "sensor_index": "tempertureSensorValue.17.0", + "sensor_type": "gaia", + "sensor_descr": "20-PS 2 Internal", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.18.0", + "sensor_index": "tempertureSensorValue.18.0", + "sensor_type": "gaia", + "sensor_descr": "27-HD Controller", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.19.0", + "sensor_index": "tempertureSensorValue.19.0", + "sensor_type": "gaia", + "sensor_descr": "30-Front Ambient", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.2.0", + "sensor_index": "tempertureSensorValue.2.0", + "sensor_type": "gaia", + "sensor_descr": "02-CPU 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.20.0", + "sensor_index": "tempertureSensorValue.20.0", + "sensor_type": "gaia", + "sensor_descr": "31-PCI 1 Zone.", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.21.0", + "sensor_index": "tempertureSensorValue.21.0", + "sensor_type": "gaia", + "sensor_descr": "32-PCI 2 Zone.", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.22.0", + "sensor_index": "tempertureSensorValue.22.0", + "sensor_type": "gaia", + "sensor_descr": "33-PCI 3 Zone.", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.23.0", + "sensor_index": "tempertureSensorValue.23.0", + "sensor_type": "gaia", + "sensor_descr": "37-HD Cntlr Zone", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.24.0", + "sensor_index": "tempertureSensorValue.24.0", + "sensor_type": "gaia", + "sensor_descr": "38-I/O Zone", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.25.0", + "sensor_index": "tempertureSensorValue.25.0", + "sensor_type": "gaia", + "sensor_descr": "39-P/S 2 Zone", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.26.0", + "sensor_index": "tempertureSensorValue.26.0", + "sensor_type": "gaia", + "sensor_descr": "40-Battery Zone", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.27.0", + "sensor_index": "tempertureSensorValue.27.0", + "sensor_type": "gaia", + "sensor_descr": "41-iLO Zone", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": 28, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.28.0", + "sensor_index": "tempertureSensorValue.28.0", + "sensor_type": "gaia", + "sensor_descr": "43-Storage Batt", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.29.0", + "sensor_index": "tempertureSensorValue.29.0", + "sensor_type": "gaia", + "sensor_descr": "44-Fuse", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.3.0", + "sensor_index": "tempertureSensorValue.3.0", + "sensor_type": "gaia", + "sensor_descr": "03-CPU 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.4.0", + "sensor_index": "tempertureSensorValue.4.0", + "sensor_type": "gaia", + "sensor_descr": "05-P1 DIMM 7-12", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.5.0", + "sensor_index": "tempertureSensorValue.5.0", + "sensor_type": "gaia", + "sensor_descr": "07-P2 DIMM 7-12", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.6.0", + "sensor_index": "tempertureSensorValue.6.0", + "sensor_type": "gaia", + "sensor_descr": "08-HD Max", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.7.0", + "sensor_index": "tempertureSensorValue.7.0", + "sensor_type": "gaia", + "sensor_descr": "10-Chipset", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 59, + "sensor_limit_warn": null, + "sensor_limit_low": 29, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.8.0", + "sensor_index": "tempertureSensorValue.8.0", + "sensor_type": "gaia", + "sensor_descr": "11-PS 1 Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 47, + "sensor_limit_warn": null, + "sensor_limit_low": 17, + "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": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.1.1.3.9.0", + "sensor_index": "tempertureSensorValue.9.0", + "sensor_type": "gaia", + "sensor_descr": "12-PS 2 Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 28, + "sensor_limit": 48, + "sensor_limit_warn": null, + "sensor_limit_low": 18, + "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": "fanSpeedSensorStatus", + "state_descr": "false", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fanSpeedSensorStatus", + "state_descr": "true", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fanSpeedSensorStatus", + "state_descr": "reading error", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "mgActiveStatus", + "state_descr": "active", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mgActiveStatus", + "state_descr": "standby", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "mgFwmIsAlive", + "state_descr": "down", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 1 + }, + { + "state_name": "mgFwmIsAlive", + "state_descr": "up", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mgStatCode", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "mgStatCode", + "state_descr": "Attention", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 1 + }, + { + "state_name": "mgStatCode", + "state_descr": "Problem", + "state_draw_graph": 2, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "tempertureSensorStatus", + "state_descr": "false", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tempertureSensorStatus", + "state_descr": "true", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "tempertureSensorStatus", + "state_descr": "reading error", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/gaia_23900.snmprec b/tests/snmpsim/gaia_23900.snmprec new file mode 100644 index 0000000000..2735177e5b --- /dev/null +++ b/tests/snmpsim/gaia_23900.snmprec @@ -0,0 +1,37 @@ +1.3.6.1.2.1.1.1.0|4|Linux vsx123 2.6.18-92cpx86_64 #1 SMP Tue Sep 8 20:04:48 IDT 2020 x86_64 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10 +1.3.6.1.2.1.1.3.0|67|360217183 +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.2.1.25.1.1.0|67|360227046 +1.3.6.1.2.1.25.1.4.0|4|ro noht root=/dev/vg_splat/lv_current vmalloc=306M panic=15 console=ttyS0 crashkernel=128M@16M 3 quiet +1.3.6.1.4.1.2620.1.1.4.0|66|1265706970 +1.3.6.1.4.1.2620.1.1.5.0|66|56 +1.3.6.1.4.1.2620.1.1.6.0|66|16795063 +1.3.6.1.4.1.2620.1.1.7.0|66|157825429 +1.3.6.1.4.1.2620.1.1.25.3.0|66|61476 +1.3.6.1.4.1.2620.1.1.30.1.0|2|0 +1.3.6.1.4.1.2620.1.1.30.3.1.2.1.0|4|10.10.10.10 +1.3.6.1.4.1.2620.1.1.30.3.1.2.2.0|4|11.11.11.11 +1.3.6.1.4.1.2620.1.1.30.3.1.3.1.0|66|0 +1.3.6.1.4.1.2620.1.1.30.3.1.3.2.0|66|2 +1.3.6.1.4.1.2620.1.1.30.5.0|2|0 +1.3.6.1.4.1.2620.1.1.30.7.0|66|435 +1.3.6.1.4.1.2620.1.5.5.0|4|yes +1.3.6.1.4.1.2620.1.5.6.0|4|active +1.3.6.1.4.1.2620.1.5.101.0|66|0 +1.3.6.1.4.1.2620.1.6.4.1.0|4|R80.30 +1.3.6.1.4.1.2620.1.6.5.1.0|4|Gaia +1.3.6.1.4.1.2620.1.6.16.3.0|4|LR123456789 +1.3.6.1.4.1.2620.1.6.16.7.0|4|Check Point 23900 +1.3.6.1.4.1.2620.1.39.1.1.0|4|valid +1.3.6.1.4.1.2620.1.39.2.1.0|4|up-to-date +1.3.6.1.4.1.2620.1.43.1.1.0|4|valid +1.3.6.1.4.1.2620.1.43.2.1.0|4|up-to-date +1.3.6.1.4.1.2620.1.46.1.1.0|4|up-to-date +1.3.6.1.4.1.2620.1.46.2.1.0|4|valid +1.3.6.1.4.1.2620.1.46.3.1.0|4|valid +1.3.6.1.4.1.2620.1.46.4.1.0|4| +1.3.6.1.4.1.2620.1.46.5.1.0|4|new +1.3.6.1.6.3.10.2.1.3.0|2|3602272 diff --git a/tests/snmpsim/gaia_logserver.snmprec b/tests/snmpsim/gaia_logserver.snmprec new file mode 100644 index 0000000000..aa7d8edfba --- /dev/null +++ b/tests/snmpsim/gaia_logserver.snmprec @@ -0,0 +1,160 @@ +1.3.6.1.2.1.1.1.0|4|Linux fw-log 3.10.0-957.5.1cpx86_64 #1 SMP Tue Sep 8 20:25:16 IDT 2020 x86_64 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2620.1.6.123.1.49 +1.3.6.1.2.1.1.3.0|67|1152341622 +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.2.1.25.1.1.0|67|1152345026 +1.3.6.1.2.1.25.1.4.0|4|ro root=/dev/mapper/vg_splat-lv_current vmalloc=256M noht panic=15 console=ttyS0 crashkernel=auto 3 quiet +1.3.6.1.4.1.2620.1.6.4.1.0|4|R80.30 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.1.0|4|01-Inlet Ambient +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.2.0|4|02-CPU 1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.3.0|4|03-CPU 2 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.4.0|4|05-P1 DIMM 7-12 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.5.0|4|07-P2 DIMM 7-12 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.6.0|4|08-HD Max +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.7.0|4|10-Chipset +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.8.0|4|11-PS 1 Inlet +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.9.0|4|12-PS 2 Inlet +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.10.0|4|13-VR P1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.11.0|4|14-VR P2 +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.12.0|4|15-VR P1 Mem +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.13.0|4|16-VR P1 Mem +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.14.0|4|17-VR P2 Mem +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.15.0|4|18-VR P2 Mem +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.16.0|4|19-PS 1 Internal +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.17.0|4|20-PS 2 Internal +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.18.0|4|27-HD Controller +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.19.0|4|30-Front Ambient +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.20.0|4|31-PCI 1 Zone. +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.21.0|4|32-PCI 2 Zone. +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.22.0|4|33-PCI 3 Zone. +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.23.0|4|37-HD Cntlr Zone +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.24.0|4|38-I/O Zone +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.25.0|4|39-P/S 2 Zone +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.26.0|4|40-Battery Zone +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.27.0|4|41-iLO Zone +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.28.0|4|43-Storage Batt +1.3.6.1.4.1.2620.1.6.7.8.1.1.2.29.0|4|44-Fuse +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.1.0|4|18 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.2.0|4|40 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.3.0|4|40 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.4.0|4|35 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.5.0|4|34 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.6.0|4|35 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.7.0|4|39 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.8.0|4|27 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.9.0|4|28 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.10.0|4|36 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.11.0|4|37 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.12.0|4|29 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.13.0|4|30 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.14.0|4|32 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.15.0|4|30 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.16.0|4|40 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.17.0|4|40 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.18.0|4|47 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.19.0|4|25 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.20.0|4|31 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.21.0|4|32 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.22.0|4|33 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.23.0|4|41 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.24.0|4|32 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.25.0|4|33 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.26.0|4|34 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.27.0|4|38 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.28.0|4|23 +1.3.6.1.4.1.2620.1.6.7.8.1.1.3.29.0|4|33 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.1.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.2.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.3.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.4.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.5.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.6.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.7.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.8.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.9.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.10.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.11.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.12.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.13.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.14.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.15.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.16.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.17.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.18.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.19.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.20.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.21.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.22.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.23.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.24.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.25.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.26.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.27.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.28.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.1.1.6.29.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.1.0|4|Fan 1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.2.0|4|Fan 1 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.3.0|4|Fan 1 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.4.0|4|Fan 2 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.5.0|4|Fan 2 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.6.0|4|Fan 2 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.7.0|4|Fan 3 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.8.0|4|Fan 3 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.9.0|4|Fan 3 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.10.0|4|Fan 4 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.11.0|4|Fan 4 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.12.0|4|Fan 4 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.13.0|4|Fan 5 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.14.0|4|Fan 5 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.15.0|4|Fan 5 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.16.0|4|Fan 6 +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.17.0|4|Fan 6 DutyCycle +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.18.0|4|Fan 6 Presence +1.3.6.1.4.1.2620.1.6.7.8.2.1.2.19.0|4|Fans +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.1.0|4|12.15 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.2.0|4|12.15 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.3.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.4.0|4|15.29 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.5.0|4|15.29 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.6.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.7.0|4|16.07 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.8.0|4|16.07 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.9.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.10.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.11.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.12.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.13.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.14.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.15.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.16.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.17.0|4|20.38 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.18.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.3.19.0|4|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.1.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.2.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.3.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.4.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.5.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.6.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.7.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.8.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.9.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.10.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.11.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.12.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.13.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.14.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.15.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.16.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.17.0|2|1 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.18.0|2|0 +1.3.6.1.4.1.2620.1.6.7.8.2.1.6.19.0|2|0 +1.3.6.1.4.1.2620.1.6.16.3.0|4| +1.3.6.1.4.1.2620.1.6.16.7.0|4|ProLiant DL380 Gen9 +1.3.6.1.4.1.2620.1.7.5.0|4|active +1.3.6.1.4.1.2620.1.7.6.0|66|1 +1.3.6.1.4.1.2620.1.7.14.1.0|66|913 +1.3.6.1.4.1.2620.1.7.101.0|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|11523417