diff --git a/includes/definitions/discovery/fabos.yaml b/includes/definitions/discovery/fabos.yaml index d2977a4514..6df9cb3fe5 100644 --- a/includes/definitions/discovery/fabos.yaml +++ b/includes/definitions/discovery/fabos.yaml @@ -10,3 +10,56 @@ modules: oid: swCpuUsage num_oid: '.1.3.6.1.4.1.1588.2.1.1.1.26.1.{{ $index }}' index: 1 + sensors: + temperature: + data: + - + oid: swSensorTable + value: swSensorValue + num_oid: '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{{ $index }}' + descr: swSensorInfo + skip_values: + - + oid: swSensorValue + op: '=' + value: -2147483648 + - + oid: swSensorType + op: '!=' + value: 1 + fanspeed: + data: + - + oid: swSensorTable + value: swSensorValue + num_oid: '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{{ $index }}' + descr: swSensorInfo + skip_values: + - + oid: swSensorValue + op: '=' + value: -2147483648 + - + oid: swSensorType + op: '!=' + value: 2 + state: + data: + - + oid: swSensorTable + value: swSensorStatus + num_oid: '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{{ $index }}' + descr: swSensorInfo + state_name: swSensorStatus + states: + - { value: 1, generic: 3, graph: 0, descr: 'unknown' } + - { value: 2, generic: 2, graph: 1, descr: 'faulty' } + - { value: 3, generic: 1, graph: 1, descr: 'below-min' } + - { value: 4, generic: 0, graph: 1, descr: 'nominal' } + - { value: 5, generic: 1, graph: 1, descr: 'above-max' } + - { value: 6, generic: 1, graph: 1, descr: 'absent' } + skip_values: + - + oid: swSensorValue + op: '=' + value: -2147483648 diff --git a/includes/discovery/sensors/dbm/fabos.inc.php b/includes/discovery/sensors/dbm/fabos.inc.php new file mode 100644 index 0000000000..9959102a2e --- /dev/null +++ b/includes/discovery/sensors/dbm/fabos.inc.php @@ -0,0 +1,64 @@ + $entry) { + foreach ($entry as $index => $current) { + if (is_numeric($current)) { + $ifIndex = $index + 1073741823; + discover_sensor( + $valid['sensor'], + 'dbm', + $device, + ".$oid.$index", + 'swSfpRxPower.' . $index, + 'brocade', + makeshortif($ifDescr[$ifIndex]) . ' RX', + 1, + 1, + -35, + -30, + -3, + 0, + $current, + 'snmp', + $ifIndex, + 'ports', + null, + 'Receive Power' + ); + } + } +} + +foreach ($fabosSfpTxPower as $oid => $entry) { + foreach ($entry as $index => $current) { + if (is_numeric($current)) { + $ifIndex = $index + 1073741823; + discover_sensor( + $valid['sensor'], + 'dbm', + $device, + ".$oid.$index", + 'swSfpTxPower.' . $index, + 'brocade', + makeshortif($ifDescr[$ifIndex]) . ' TX', + 1, + 1, + -5, + null, + null, + 0, + $current, + 'snmp', + $ifIndex, + 'ports', + null, + 'Transmit Power'); + } + } +} diff --git a/includes/discovery/sensors/fanspeed/fabos.inc.php b/includes/discovery/sensors/fanspeed/fabos.inc.php deleted file mode 100644 index 8e018a122a..0000000000 --- a/includes/discovery/sensors/fanspeed/fabos.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -. - * - * @link https://www.librenms.org - * @copyright 2017 Neil Lathwood - * @author Neil Lathwood - */ -foreach ($pre_cache['fabos_sensors'] as $data) { - if ($data['swSensorType'] === 'fan') { - if (is_numeric($data['swSensorValue']) && $data['swSensorValue'] !== '-2147483648') { - $index = $data['swSensorIndex']; - $oid = '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.' . $index; - $descr = $data['swSensorInfo']; - $value = $data['swSensorValue']; - discover_sensor($valid['sensor'], 'fan', $device, $oid, $index, 'fabos', $descr, '1', '1', null, null, null, null, $value); - } - } -} diff --git a/includes/discovery/sensors/pre-cache/fabos.inc.php b/includes/discovery/sensors/pre-cache/fabos.inc.php deleted file mode 100644 index ad1a4a7e20..0000000000 --- a/includes/discovery/sensors/pre-cache/fabos.inc.php +++ /dev/null @@ -1,25 +0,0 @@ -. - * - * @link https://www.librenms.org - * @copyright 2017 Neil Lathwood - * @author Neil Lathwood - */ -echo 'swSensorEntry '; -$pre_cache['fabos_sensors'] = snmpwalk_cache_multi_oid($device, 'swSensorEntry', [], 'SW-MIB'); diff --git a/includes/discovery/sensors/state/fabos.inc.php b/includes/discovery/sensors/state/fabos.inc.php deleted file mode 100644 index fb998e7328..0000000000 --- a/includes/discovery/sensors/state/fabos.inc.php +++ /dev/null @@ -1,43 +0,0 @@ -. - * - * @link https://www.librenms.org - * @copyright 2017 Neil Lathwood - * @author Neil Lathwood - */ -foreach ($pre_cache['fabos_sensors'] as $data) { - if (is_numeric($data['swSensorValue']) && $data['swSensorValue'] !== '-2147483648') { - $descr = $data['swSensorInfo']; - $states = [ - ['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'unknown'], - ['value' => 2, 'generic' => 2, 'graph' => 1, 'descr' => 'faulty'], - ['value' => 3, 'generic' => 1, 'graph' => 1, 'descr' => 'below-min'], - ['value' => 4, 'generic' => 0, 'graph' => 1, 'descr' => 'nominal'], - ['value' => 5, 'generic' => 1, 'graph' => 1, 'descr' => 'above-max'], - ['value' => 6, 'generic' => 1, 'graph' => 1, 'descr' => 'absent'], - ]; - create_state_index($state_name, $states); - - $index = $data['swSensorIndex']; - $oid = '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.' . $index; - $value = $data['swSensorStatus']; - discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $descr, $descr, 1, 1, null, null, null, null, $value); - create_sensor_to_state_index($device, $descr, $index); - } -} diff --git a/includes/discovery/sensors/temperature/fabos.inc.php b/includes/discovery/sensors/temperature/fabos.inc.php deleted file mode 100644 index 80245a77c0..0000000000 --- a/includes/discovery/sensors/temperature/fabos.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -. - * - * @link https://www.librenms.org - * @copyright 2017 Neil Lathwood - * @author Neil Lathwood - */ -foreach ($pre_cache['fabos_sensors'] as $data) { - if ($data['swSensorType'] === 'temperature') { - if (is_numeric($data['swSensorValue']) && $data['swSensorValue'] !== '-2147483648') { - $index = $data['swSensorIndex']; - $oid = '.1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.' . $index; - $descr = $data['swSensorInfo']; - $value = $data['swSensorValue']; - discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'fabos', $descr, '1', '1', null, null, null, null, $value); - } - } -} diff --git a/mibs/brocade/FA-EXT-MIB b/mibs/brocade/FA-EXT-MIB new file mode 100644 index 0000000000..4d0f14fd59 --- /dev/null +++ b/mibs/brocade/FA-EXT-MIB @@ -0,0 +1,127 @@ +-- +-- Title: Fibre Channel Switch MIB. +-- + +FA-EXT-MIB DEFINITIONS ::= BEGIN + + IMPORTS + DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + Integer32, OBJECT-TYPE, OBJECT-IDENTITY, + MODULE-IDENTITY + FROM SNMPv2-SMI + sw + FROM SW-MIB + connUnitPortEntry + FROM FCMGMT-MIB; + + faExt MODULE-IDENTITY + LAST-UPDATED "200807291830Z" + ORGANIZATION "Brocade Communications Systems, Inc.," + CONTACT-INFO "Customer Support Group + Brocade Communications Systems, + 1745 Technology Drive, + San Jose, CA 95110 U.S.A + Tel: +1-408-392-6061 + Fax: +1-408-392-6656 + Email: support@Brocade.COM + WEB: www.brocade.com" + + + DESCRIPTION "The MIB module is Extension for FA-MIB. + Copyright (c) 1996-2003 Brocade Communications Systems, Inc. + All rights reserved." + + ::= { sw 28 } + + swSfpStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwSfpStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This represents the diagnostic stats of SFPs." + ::= { faExt 1 } + + swSfpStatEntry OBJECT-TYPE + SYNTAX SwSfpStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This represents the diagnostic stats of SFPs" + AUGMENTS {connUnitPortEntry} + ::= { swSfpStatTable 1 } + + SwSfpStatEntry ::= SEQUENCE { + swSfpTemperature OCTET STRING, + swSfpVoltage OCTET STRING, + swSfpCurrent OCTET STRING, + swSfpRxPower OCTET STRING, + swSfpTxPower OCTET STRING, + swSfpPoweronHrs Integer32, + swSfpOUI OCTET STRING, + swSfpUnitId Integer32 + } + + swSfpTemperature OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + UNITS "centigrade" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the temperature of SFP" + ::= { swSfpStatEntry 1 } + + swSfpVoltage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + UNITS "milli voltage" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the voltage of SFP." + ::= { swSfpStatEntry 2 } + + swSfpCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + UNITS "milli amphere" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the current of SFP." + ::= { swSfpStatEntry 3 } + + swSfpRxPower OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + UNITS "dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the Rx power consumption of SFP." + ::= { swSfpStatEntry 4 } + + swSfpTxPower OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + UNITS "dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the Tx power consumption of SFP." + ::= { swSfpStatEntry 5 } + + swSfpPoweronHrs OBJECT-TYPE + SYNTAX Integer32 + UNITS "hours" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies the power on hours of SFP. + This is applicable only to 16G SFPs." + ::= { swSfpStatEntry 6 } + + swSfpOUI OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object represents the OUI of the SFP" + ::= { swSfpStatEntry 7 } + + swSfpUnitId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object identifies unit ID of SFP. + This is applicable only to QSFP." + ::= { swSfpStatEntry 8 } + +END diff --git a/tests/data/fabos.json b/tests/data/fabos.json index 966b66e6fe..83a87f2bca 100644 --- a/tests/data/fabos.json +++ b/tests/data/fabos.json @@ -21908,7 +21908,3631 @@ "sensors": [ { "sensor_deleted": 0, - "sensor_class": "fan", + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.1", + "sensor_index": "swSfpRxPower.1", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/0 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741824", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.10", + "sensor_index": "swSfpRxPower.10", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/9 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741833", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.11", + "sensor_index": "swSfpRxPower.11", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/10 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -33, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741834", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.12", + "sensor_index": "swSfpRxPower.12", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/11 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741835", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.13", + "sensor_index": "swSfpRxPower.13", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/12 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741836", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.14", + "sensor_index": "swSfpRxPower.14", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/13 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741837", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.15", + "sensor_index": "swSfpRxPower.15", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/14 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741838", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.16", + "sensor_index": "swSfpRxPower.16", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/15 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741839", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.17", + "sensor_index": "swSfpRxPower.17", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/16 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741840", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.18", + "sensor_index": "swSfpRxPower.18", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/17 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741841", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.19", + "sensor_index": "swSfpRxPower.19", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/18 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741842", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.2", + "sensor_index": "swSfpRxPower.2", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/1 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741825", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.20", + "sensor_index": "swSfpRxPower.20", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/19 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741843", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.21", + "sensor_index": "swSfpRxPower.21", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/20 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741844", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.22", + "sensor_index": "swSfpRxPower.22", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/21 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741845", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.23", + "sensor_index": "swSfpRxPower.23", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/22 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.7, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741846", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.24", + "sensor_index": "swSfpRxPower.24", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/23 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741847", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.25", + "sensor_index": "swSfpRxPower.25", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/24 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.8, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741848", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.26", + "sensor_index": "swSfpRxPower.26", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/25 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741849", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.27", + "sensor_index": "swSfpRxPower.27", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/26 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741850", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.28", + "sensor_index": "swSfpRxPower.28", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/27 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741851", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.29", + "sensor_index": "swSfpRxPower.29", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/28 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741852", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.3", + "sensor_index": "swSfpRxPower.3", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/2 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741826", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.30", + "sensor_index": "swSfpRxPower.30", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/29 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741853", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.31", + "sensor_index": "swSfpRxPower.31", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/30 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741854", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.32", + "sensor_index": "swSfpRxPower.32", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/31 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741855", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.33", + "sensor_index": "swSfpRxPower.33", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/32 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741856", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.34", + "sensor_index": "swSfpRxPower.34", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/33 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.5, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741857", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.35", + "sensor_index": "swSfpRxPower.35", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/34 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.7, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741858", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.36", + "sensor_index": "swSfpRxPower.36", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/35 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741859", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.37", + "sensor_index": "swSfpRxPower.37", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/36 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.1, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741860", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.38", + "sensor_index": "swSfpRxPower.38", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/37 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741861", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.39", + "sensor_index": "swSfpRxPower.39", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/38 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741862", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.4", + "sensor_index": "swSfpRxPower.4", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/3 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741827", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.40", + "sensor_index": "swSfpRxPower.40", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/39 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741863", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.41", + "sensor_index": "swSfpRxPower.41", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/40 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741864", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.42", + "sensor_index": "swSfpRxPower.42", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/41 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741865", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.43", + "sensor_index": "swSfpRxPower.43", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/42 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741866", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.44", + "sensor_index": "swSfpRxPower.44", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/43 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741867", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.45", + "sensor_index": "swSfpRxPower.45", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/44 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -27, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741868", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.46", + "sensor_index": "swSfpRxPower.46", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/45 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741869", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.47", + "sensor_index": "swSfpRxPower.47", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/46 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741870", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.48", + "sensor_index": "swSfpRxPower.48", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/47 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.8, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741871", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.49", + "sensor_index": "swSfpRxPower.49", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/48 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741872", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.5", + "sensor_index": "swSfpRxPower.5", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/4 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741828", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.50", + "sensor_index": "swSfpRxPower.50", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/49 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741873", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.51", + "sensor_index": "swSfpRxPower.51", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/50 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741874", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.53", + "sensor_index": "swSfpRxPower.53", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/52 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741876", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.54", + "sensor_index": "swSfpRxPower.54", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/53 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741877", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.55", + "sensor_index": "swSfpRxPower.55", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/54 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741878", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.57", + "sensor_index": "swSfpRxPower.57", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/56 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741880", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.58", + "sensor_index": "swSfpRxPower.58", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/57 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741881", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.59", + "sensor_index": "swSfpRxPower.59", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/58 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -30.5, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741882", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.6", + "sensor_index": "swSfpRxPower.6", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/5 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741829", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.60", + "sensor_index": "swSfpRxPower.60", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/59 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -24.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741883", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.61", + "sensor_index": "swSfpRxPower.61", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/60 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741884", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.62", + "sensor_index": "swSfpRxPower.62", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/61 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741885", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.63", + "sensor_index": "swSfpRxPower.63", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/62 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741886", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.64", + "sensor_index": "swSfpRxPower.64", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/63 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741887", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.65", + "sensor_index": "swSfpRxPower.65", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/64 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741888", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.66", + "sensor_index": "swSfpRxPower.66", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/65 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741889", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.67", + "sensor_index": "swSfpRxPower.67", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/66 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -25.9, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741890", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.68", + "sensor_index": "swSfpRxPower.68", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/67 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -40, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741891", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.69", + "sensor_index": "swSfpRxPower.69", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/68 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -28.5, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741892", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.7", + "sensor_index": "swSfpRxPower.7", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/6 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741830", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.70", + "sensor_index": "swSfpRxPower.70", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/69 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -30, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741893", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.71", + "sensor_index": "swSfpRxPower.71", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/70 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741894", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.72", + "sensor_index": "swSfpRxPower.72", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/71 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741895", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.8", + "sensor_index": "swSfpRxPower.8", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/7 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.6, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741831", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.81", + "sensor_index": "swSfpRxPower.81", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/80 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741904", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.82", + "sensor_index": "swSfpRxPower.82", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/81 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.7, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741905", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.9", + "sensor_index": "swSfpRxPower.9", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/8 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -32.2, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741832", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.91", + "sensor_index": "swSfpRxPower.91", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/90 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.7, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741914", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.92", + "sensor_index": "swSfpRxPower.92", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/91 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741915", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.95", + "sensor_index": "swSfpRxPower.95", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/94 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741918", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.96", + "sensor_index": "swSfpRxPower.96", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/95 RX", + "group": "Receive Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.4, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -35, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741919", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.1", + "sensor_index": "swSfpTxPower.1", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/0 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -26.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741824", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.10", + "sensor_index": "swSfpTxPower.10", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/9 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741833", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.11", + "sensor_index": "swSfpTxPower.11", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/10 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741834", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.12", + "sensor_index": "swSfpTxPower.12", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/11 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741835", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.13", + "sensor_index": "swSfpTxPower.13", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/12 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741836", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.14", + "sensor_index": "swSfpTxPower.14", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/13 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.8, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741837", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.15", + "sensor_index": "swSfpTxPower.15", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/14 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741838", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.16", + "sensor_index": "swSfpTxPower.16", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/15 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741839", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.17", + "sensor_index": "swSfpTxPower.17", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/16 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741840", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.18", + "sensor_index": "swSfpTxPower.18", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/17 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741841", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.19", + "sensor_index": "swSfpTxPower.19", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/18 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741842", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.2", + "sensor_index": "swSfpTxPower.2", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/1 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741825", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.20", + "sensor_index": "swSfpTxPower.20", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/19 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741843", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.21", + "sensor_index": "swSfpTxPower.21", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/20 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741844", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.22", + "sensor_index": "swSfpTxPower.22", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/21 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741845", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.23", + "sensor_index": "swSfpTxPower.23", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/22 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741846", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.24", + "sensor_index": "swSfpTxPower.24", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/23 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741847", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.26", + "sensor_index": "swSfpTxPower.26", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/25 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741849", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.27", + "sensor_index": "swSfpTxPower.27", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/26 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.4, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741850", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.28", + "sensor_index": "swSfpTxPower.28", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/27 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741851", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.29", + "sensor_index": "swSfpTxPower.29", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/28 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741852", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.3", + "sensor_index": "swSfpTxPower.3", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/2 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741826", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.30", + "sensor_index": "swSfpTxPower.30", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/29 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741853", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.31", + "sensor_index": "swSfpTxPower.31", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/30 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741854", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.32", + "sensor_index": "swSfpTxPower.32", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/31 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741855", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.33", + "sensor_index": "swSfpTxPower.33", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/32 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741856", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.34", + "sensor_index": "swSfpTxPower.34", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/33 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741857", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.35", + "sensor_index": "swSfpTxPower.35", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/34 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741858", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.36", + "sensor_index": "swSfpTxPower.36", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/35 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741859", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.37", + "sensor_index": "swSfpTxPower.37", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/36 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741860", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.38", + "sensor_index": "swSfpTxPower.38", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/37 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741861", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.39", + "sensor_index": "swSfpTxPower.39", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/38 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741862", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.4", + "sensor_index": "swSfpTxPower.4", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/3 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741827", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.40", + "sensor_index": "swSfpTxPower.40", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/39 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741863", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.41", + "sensor_index": "swSfpTxPower.41", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/40 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741864", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.42", + "sensor_index": "swSfpTxPower.42", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/41 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741865", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.43", + "sensor_index": "swSfpTxPower.43", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/42 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741866", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.44", + "sensor_index": "swSfpTxPower.44", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/43 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741867", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.45", + "sensor_index": "swSfpTxPower.45", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/44 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741868", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.46", + "sensor_index": "swSfpTxPower.46", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/45 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741869", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.47", + "sensor_index": "swSfpTxPower.47", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/46 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741870", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.48", + "sensor_index": "swSfpTxPower.48", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/47 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741871", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.49", + "sensor_index": "swSfpTxPower.49", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/48 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741872", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.5", + "sensor_index": "swSfpTxPower.5", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/4 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741828", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.50", + "sensor_index": "swSfpTxPower.50", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/49 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741873", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.51", + "sensor_index": "swSfpTxPower.51", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/50 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.8, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741874", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.53", + "sensor_index": "swSfpTxPower.53", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/52 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.7, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741876", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.54", + "sensor_index": "swSfpTxPower.54", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/53 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741877", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.55", + "sensor_index": "swSfpTxPower.55", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/54 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741878", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.57", + "sensor_index": "swSfpTxPower.57", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/56 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741880", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.58", + "sensor_index": "swSfpTxPower.58", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/57 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741881", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.59", + "sensor_index": "swSfpTxPower.59", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/58 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741882", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.6", + "sensor_index": "swSfpTxPower.6", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/5 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741829", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.60", + "sensor_index": "swSfpTxPower.60", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/59 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.8, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741883", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.61", + "sensor_index": "swSfpTxPower.61", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/60 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741884", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.62", + "sensor_index": "swSfpTxPower.62", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/61 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741885", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.63", + "sensor_index": "swSfpTxPower.63", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/62 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741886", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.64", + "sensor_index": "swSfpTxPower.64", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/63 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741887", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.65", + "sensor_index": "swSfpTxPower.65", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/64 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741888", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.66", + "sensor_index": "swSfpTxPower.66", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/65 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.6, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741889", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.67", + "sensor_index": "swSfpTxPower.67", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/66 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741890", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.68", + "sensor_index": "swSfpTxPower.68", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/67 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.7, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741891", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.69", + "sensor_index": "swSfpTxPower.69", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/68 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741892", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.7", + "sensor_index": "swSfpTxPower.7", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/6 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741830", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.70", + "sensor_index": "swSfpTxPower.70", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/69 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.7, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741893", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.71", + "sensor_index": "swSfpTxPower.71", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/70 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741894", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.72", + "sensor_index": "swSfpTxPower.72", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/71 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741895", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.8", + "sensor_index": "swSfpTxPower.8", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/7 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.3, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741831", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.81", + "sensor_index": "swSfpTxPower.81", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/80 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -4, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741904", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.82", + "sensor_index": "swSfpTxPower.82", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/81 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -4, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741905", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.9", + "sensor_index": "swSfpTxPower.9", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/8 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741832", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.91", + "sensor_index": "swSfpTxPower.91", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/90 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -4, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741914", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.92", + "sensor_index": "swSfpTxPower.92", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/91 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -4, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741915", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.95", + "sensor_index": "swSfpTxPower.95", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/94 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741918", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.96", + "sensor_index": "swSfpTxPower.96", + "sensor_type": "brocade", + "sensor_descr": "fc port 0/95 TX", + "group": "Transmit Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -3.2, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1073741919", + "entPhysicalIndex_measured": "ports", + "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.1588.2.1.1.1.1.22.1.4.10", "sensor_index": "10", @@ -21918,9 +25542,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 2165, - "sensor_limit": null, + "sensor_limit": 3897, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 1732, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -21932,7 +25556,7 @@ }, { "sensor_deleted": 0, - "sensor_class": "fan", + "sensor_class": "fanspeed", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.11", "sensor_index": "11", @@ -21942,9 +25566,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 2047, - "sensor_limit": null, + "sensor_limit": 3684.6, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 1637.6, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -21956,7 +25580,7 @@ }, { "sensor_deleted": 0, - "sensor_class": "fan", + "sensor_class": "fanspeed", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.12", "sensor_index": "12", @@ -21966,9 +25590,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 2073, - "sensor_limit": null, + "sensor_limit": 3731.4, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 1658.4, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -21980,7 +25604,7 @@ }, { "sensor_deleted": 0, - "sensor_class": "fan", + "sensor_class": "fanspeed", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.13", "sensor_index": "13", @@ -21990,9 +25614,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 11969, - "sensor_limit": null, + "sensor_limit": 21544.2, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 9575.2, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -22004,7 +25628,7 @@ }, { "sensor_deleted": 0, - "sensor_class": "fan", + "sensor_class": "fanspeed", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.14", "sensor_index": "14", @@ -22014,177 +25638,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 12001, - "sensor_limit": null, + "sensor_limit": 21601.8, "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.10", - "sensor_index": "10", - "sensor_type": "FAN #1", - "sensor_descr": "FAN #1", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.11", - "sensor_index": "11", - "sensor_type": "FAN #2", - "sensor_descr": "FAN #2", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.12", - "sensor_index": "12", - "sensor_type": "FAN #3", - "sensor_descr": "FAN #3", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.13", - "sensor_index": "13", - "sensor_type": "FAN #4", - "sensor_descr": "FAN #4", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.14", - "sensor_index": "14", - "sensor_type": "FAN #5", - "sensor_descr": "FAN #5", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.15", - "sensor_index": "15", - "sensor_type": "Power Supply #1", - "sensor_descr": "Power Supply #1", - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.16", - "sensor_index": "16", - "sensor_type": "Power Supply #2", - "sensor_descr": "Power Supply #2", - "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": 9600.8, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -22200,12 +25656,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.1", "sensor_index": "1", - "sensor_type": "SLOT #0: TEMP #1", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #1", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22216,7 +25672,175 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.10", + "sensor_index": "10", + "sensor_type": "swSensorStatus", + "sensor_descr": "FAN #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.11", + "sensor_index": "11", + "sensor_type": "swSensorStatus", + "sensor_descr": "FAN #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.12", + "sensor_index": "12", + "sensor_type": "swSensorStatus", + "sensor_descr": "FAN #3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.13", + "sensor_index": "13", + "sensor_type": "swSensorStatus", + "sensor_descr": "FAN #4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.14", + "sensor_index": "14", + "sensor_type": "swSensorStatus", + "sensor_descr": "FAN #5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.15", + "sensor_index": "15", + "sensor_type": "swSensorStatus", + "sensor_descr": "Power Supply #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.16", + "sensor_index": "16", + "sensor_type": "swSensorStatus", + "sensor_descr": "Power Supply #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22224,12 +25848,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.2", "sensor_index": "2", - "sensor_type": "SLOT #0: TEMP #2", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #2", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22240,7 +25864,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22248,12 +25872,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.3", "sensor_index": "3", - "sensor_type": "SLOT #0: TEMP #3", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #3", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22264,7 +25888,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22272,12 +25896,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.4", "sensor_index": "4", - "sensor_type": "SLOT #0: TEMP #4", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #4", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22288,7 +25912,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22296,12 +25920,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.5", "sensor_index": "5", - "sensor_type": "SLOT #0: TEMP #5", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #5", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22312,7 +25936,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22320,12 +25944,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.6", "sensor_index": "6", - "sensor_type": "SLOT #0: TEMP #6", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #6", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22336,7 +25960,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22344,12 +25968,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.7", "sensor_index": "7", - "sensor_type": "SLOT #0: TEMP #7", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #7", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22360,7 +25984,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22368,12 +25992,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.8", "sensor_index": "8", - "sensor_type": "SLOT #0: TEMP #8", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #8", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22384,7 +26008,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22392,12 +26016,12 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.9", "sensor_index": "9", - "sensor_type": "SLOT #0: TEMP #9", + "sensor_type": "swSensorStatus", "sensor_descr": "SLOT #0: TEMP #9", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -22408,7 +26032,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "swSensorStatus" }, { "sensor_deleted": 0, @@ -22627,732 +26251,51 @@ "state_name": null } ], - "state_indexes": [] + "state_indexes": [ + { + "state_name": "swSensorStatus", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "swSensorStatus", + "state_descr": "faulty", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "swSensorStatus", + "state_descr": "below-min", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "swSensorStatus", + "state_descr": "nominal", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "swSensorStatus", + "state_descr": "above-max", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "swSensorStatus", + "state_descr": "absent", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 1 + } + ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "fan", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.10", - "sensor_index": "10", - "sensor_type": "fabos", - "sensor_descr": "FAN #1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2165, - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "fan", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.11", - "sensor_index": "11", - "sensor_type": "fabos", - "sensor_descr": "FAN #2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2047, - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "fan", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.12", - "sensor_index": "12", - "sensor_type": "fabos", - "sensor_descr": "FAN #3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2073, - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "fan", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.13", - "sensor_index": "13", - "sensor_type": "fabos", - "sensor_descr": "FAN #4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 11969, - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "fan", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.14", - "sensor_index": "14", - "sensor_type": "fabos", - "sensor_descr": "FAN #5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 12001, - "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": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.10", - "sensor_index": "10", - "sensor_type": "FAN #1", - "sensor_descr": "FAN #1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.11", - "sensor_index": "11", - "sensor_type": "FAN #2", - "sensor_descr": "FAN #2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.12", - "sensor_index": "12", - "sensor_type": "FAN #3", - "sensor_descr": "FAN #3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.13", - "sensor_index": "13", - "sensor_type": "FAN #4", - "sensor_descr": "FAN #4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.14", - "sensor_index": "14", - "sensor_type": "FAN #5", - "sensor_descr": "FAN #5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.15", - "sensor_index": "15", - "sensor_type": "Power Supply #1", - "sensor_descr": "Power Supply #1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.16", - "sensor_index": "16", - "sensor_type": "Power Supply #2", - "sensor_descr": "Power Supply #2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.1", - "sensor_index": "1", - "sensor_type": "SLOT #0: TEMP #1", - "sensor_descr": "SLOT #0: TEMP #1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.2", - "sensor_index": "2", - "sensor_type": "SLOT #0: TEMP #2", - "sensor_descr": "SLOT #0: TEMP #2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.3", - "sensor_index": "3", - "sensor_type": "SLOT #0: TEMP #3", - "sensor_descr": "SLOT #0: TEMP #3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.4", - "sensor_index": "4", - "sensor_type": "SLOT #0: TEMP #4", - "sensor_descr": "SLOT #0: TEMP #4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.5", - "sensor_index": "5", - "sensor_type": "SLOT #0: TEMP #5", - "sensor_descr": "SLOT #0: TEMP #5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.6", - "sensor_index": "6", - "sensor_type": "SLOT #0: TEMP #6", - "sensor_descr": "SLOT #0: TEMP #6", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.7", - "sensor_index": "7", - "sensor_type": "SLOT #0: TEMP #7", - "sensor_descr": "SLOT #0: TEMP #7", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.8", - "sensor_index": "8", - "sensor_type": "SLOT #0: TEMP #8", - "sensor_descr": "SLOT #0: TEMP #8", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.9", - "sensor_index": "9", - "sensor_type": "SLOT #0: TEMP #9", - "sensor_descr": "SLOT #0: TEMP #9", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "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": 0, - "user_func": null, - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.1", - "sensor_index": "1", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 42, - "sensor_limit": 62, - "sensor_limit_warn": null, - "sensor_limit_low": 32, - "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.1588.2.1.1.1.1.22.1.4.2", - "sensor_index": "2", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #2", - "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.1588.2.1.1.1.1.22.1.4.3", - "sensor_index": "3", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #3", - "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.1588.2.1.1.1.1.22.1.4.4", - "sensor_index": "4", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 63, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "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.1588.2.1.1.1.1.22.1.4.5", - "sensor_index": "5", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 63, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "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.1588.2.1.1.1.1.22.1.4.6", - "sensor_index": "6", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #6", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 63, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "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.1588.2.1.1.1.1.22.1.4.7", - "sensor_index": "7", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #7", - "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.1588.2.1.1.1.1.22.1.4.8", - "sensor_index": "8", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #8", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 64, - "sensor_limit_warn": null, - "sensor_limit_low": 34, - "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.1588.2.1.1.1.1.22.1.4.9", - "sensor_index": "9", - "sensor_type": "fabos", - "sensor_descr": "SLOT #0: TEMP #9", - "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 - } - ], - "state_indexes": [] - } + "poller": "matches discovery" } } diff --git a/tests/snmpsim/fabos.snmprec b/tests/snmpsim/fabos.snmprec index 910903aaec..5af55571f6 100644 --- a/tests/snmpsim/fabos.snmprec +++ b/tests/snmpsim/fabos.snmprec @@ -3388,4 +3388,196 @@ 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.36.96|4|Port95 1.3.6.1.4.1.1588.2.1.1.1.26.1.0|2|42 1.3.6.1.4.1.1588.2.1.1.1.26.6.0|2|18 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.1|4|-25.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.2|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.3|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.4|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.5|4|-25.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.6|4|-25.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.7|4|-26.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.8|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.9|4|-32.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.10|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.11|4|-33.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.12|4|-27.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.13|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.14|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.15|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.16|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.17|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.18|4|-27.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.19|4|-25.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.20|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.21|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.22|4|-26.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.23|4|-25.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.24|4|-25.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.25|4|-26.8 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.26|4|-26.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.27|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.28|4|-26.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.29|4|-27.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.30|4|-27.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.31|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.32|4|-26.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.33|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.34|4|-25.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.35|4|-25.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.36|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.37|4|-25.1 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.38|4|-27.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.39|4|-25.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.40|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.41|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.42|4|-26.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.43|4|-26.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.44|4|-27.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.45|4|-27.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.46|4|-26.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.47|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.48|4|-26.8 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.49|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.50|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.51|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.52|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.53|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.54|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.55|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.56|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.57|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.58|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.59|4|-30.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.60|4|-24.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.61|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.62|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.63|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.64|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.65|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.66|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.67|4|-25.9 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.68|4|-40.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.69|4|-28.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.70|4|-30.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.71|4|-26.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.72|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.73|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.74|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.75|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.76|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.77|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.78|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.79|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.80|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.81|4|-5.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.82|4|-5.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.83|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.84|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.85|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.86|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.87|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.88|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.89|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.90|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.91|4|-3.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.92|4|-3.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.93|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.94|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.95|4|-26.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.4.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.96|4|-26.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.1|4|-26.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.2|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.3|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.4|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.5|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.6|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.7|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.8|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.9|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.10|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.11|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.12|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.13|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.14|4|-2.8 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.15|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.16|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.17|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.18|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.19|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.20|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.21|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.22|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.23|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.24|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.25|4|-inf +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.26|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.27|4|-3.4 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.28|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.29|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.30|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.31|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.32|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.33|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.34|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.35|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.36|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.37|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.38|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.39|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.40|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.41|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.42|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.43|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.44|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.45|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.46|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.47|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.48|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.49|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.50|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.51|4|-3.8 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.52|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.53|4|-2.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.54|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.55|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.56|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.57|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.58|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.59|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.60|4|-2.8 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.61|4|-3.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.62|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.63|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.64|4|-2.5 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.65|4|-2.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.66|4|-3.6 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.67|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.68|4|-2.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.69|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.70|4|-2.7 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.71|4|-3.3 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.72|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.73|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.74|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.75|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.76|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.77|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.78|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.79|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.80|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.81|4|-4.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.82|4|-4.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.83|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.84|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.85|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.86|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.87|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.88|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.89|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.90|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.91|4|-4.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.92|4|-4.0 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.93|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.94|4|NA +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.95|4|-3.2 +1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5.16.0.0.39.248.216.250.233.0.0.0.0.0.0.0.0.96|4|-3.2 1.3.6.1.6.3.10.2.1.3.0|2|6028784