From 6fc8173f84c414fc008cfebdea16e2c77cc27f4c Mon Sep 17 00:00:00 2001 From: Kal42 Date: Sat, 12 Jan 2019 14:59:17 +0100 Subject: [PATCH] =?UTF-8?q?Device:=20EATON-MGEUPS:=20Added=20sensors=20for?= =?UTF-8?q?=20temperature=20and=20humidity=20from=20=E2=80=A6=20(#9647)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Device: EATON-MGEUPS: Added sensors for temperature and humidity for external environment sensor * Create eaton-mgeups.json * Update eaton-mgeups_5px.snmprec * Rename eaton-mgeups.json to eaton-mgeups_5px.json * Update eaton-mgeups_5px.snmprec * Update eaton-mgeups_5px.snmprec * Update eaton-mgeups_5px.json * Update eaton-mgeups_5px.json --- .../definitions/discovery/eaton-mgeups.yaml | 16 +- mibs/mge/EATON-EMP-MIB | 272 +++ mibs/mge/EATON-OIDS | 183 ++ tests/data/eaton-mgeups_5px.json | 2144 +++++++++++++++++ tests/snmpsim/eaton-mgeups_5px.snmprec | 380 ++- 5 files changed, 2993 insertions(+), 2 deletions(-) create mode 100644 mibs/mge/EATON-EMP-MIB create mode 100644 mibs/mge/EATON-OIDS create mode 100644 tests/data/eaton-mgeups_5px.json diff --git a/includes/definitions/discovery/eaton-mgeups.yaml b/includes/definitions/discovery/eaton-mgeups.yaml index 07ca50b770..883b4e560f 100644 --- a/includes/definitions/discovery/eaton-mgeups.yaml +++ b/includes/definitions/discovery/eaton-mgeups.yaml @@ -1,4 +1,4 @@ -mib: MG-SNMP-UPS-MIB +mib: MG-SNMP-UPS-MIB:EATON-OIDS:EATON-EMP-MIB modules: sensors: power: @@ -41,6 +41,20 @@ modules: num_oid: '.1.3.6.1.4.1.705.1.5.7.{{ $index }}' descr: 'Battery' index: 'upsmgBatteryTemperature.{{ $index }}' + - + oid: xupsEnvironment + value: xupsEnvRemoteTemp + num_oid: '.1.3.6.1.4.1.534.1.6.5.{{ $index }}' + descr: 'Environment' + index: 'xupsEnvRemoteTemp.{{ $index }}' + humidity: + data: + - + oid: xupsEnvironment + value: xupsEnvRemoteHumidity + num_oid: '.1.3.6.1.4.1.534.1.6.6.{{ $index }}' + descr: 'Environment' + index: 'xupsEnvRemoteHumidity.{{ $index }}' frequency: data: - diff --git a/mibs/mge/EATON-EMP-MIB b/mibs/mge/EATON-EMP-MIB new file mode 100644 index 0000000000..37b6070b96 --- /dev/null +++ b/mibs/mge/EATON-EMP-MIB @@ -0,0 +1,272 @@ +EATON-EMP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32 + FROM SNMPv2-SMI + DisplayString + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + xupsEnvironment + FROM EATON-OIDS; + +eatonEMPMIB MODULE-IDENTITY + LAST-UPDATED "200703120000Z" + ORGANIZATION "Eaton Corporation" + CONTACT-INFO + "Eaton Power Quality Technical Support (PQTS) group + www.eaton.com/powerxpert + Technical Resource Center phone numbers + United States: 1.800.843.9433 or 919.870.3028 + Canada: 1.800.461.9166 ext. 260 + All other countries: Call your local service representative." + DESCRIPTION + "The MIB module for Eaton Environment Monitoring Probes (EMP). + The elements of this MIB have been extracted from the + Eaton PowerMIB and placed in this separate MIB file for convenience. + + Copyright (C) Eaton Corporation (2007)." + + REVISION "200703120000Z" + DESCRIPTION + "Initial Version of eatonEMPMIB." + + ::= { xupsEnvironment 0 } + +-- ::= { enterprises 534 8 1 } +-- eatonEMPMIB { iso org(3) dod(6) internet(1) private(4) +-- enterprises(1) eaton(534) xupsMIB(1) xupsEnvironment(6) (0) } + + +-- +-- EMP group +-- +-- The objects defined in this group are provided by the EMP. +-- They are Temperature and Humidity readings and alarming limits, +-- and the (two) contacts readings and setup information. +-- These objects are considered "Remote" since the EMP is a +-- separate probe from the Eaton device or gateway it is connected to. +-- +-- Notices/Traps: two different types of traps may be sent in response +-- to EMP changes, depending upon the type of device the EMP is attached to. +-- If connected to a UPS device, normally the PowerMIB traps are sent: +-- xupstdRemoteTempBad +-- xupstdRemoteHumidityBad +-- xupstdContactActiveNotice +-- xupstdContactInactiveNotice +-- If connected to a Toolkit-enabled PowerXpert Gateway, Toolkit traps are sent: +-- powerChainCriticalAlarm +-- powerChainCautionaryAlarm +-- powerChainAlarmAcknowledged +-- powerChainAlarmCleared +-- Both sets of traps are defined in their respective MIB files. + + +xupsEnvRemoteTemp OBJECT-TYPE + SYNTAX Integer32 (-100..200) + UNITS "degrees Centigrade" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reading of an EMP's temperature sensor." + ::= { xupsEnvironment 5 } + +xupsEnvRemoteHumidity OBJECT-TYPE + SYNTAX Integer32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reading of an EMP's humidity sensor." + ::= { xupsEnvironment 6 } + +-- +-- The Environmental Contact Sensing Table +-- Contains the table for monitoring all contacts (digital +-- inputs, normally 2 in an EMP). +-- + +xupsEnvNumContacts OBJECT-TYPE + SYNTAX Integer32 (1..1024) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Contacts in the xupsContactSenseTable. + This object indicates the number of rows in the + xupsContactSenseTable." + ::= { xupsEnvironment 7 } + +xupsContactSenseTable OBJECT-TYPE + SYNTAX SEQUENCE OF XupsContactsTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Contact Sensing table entries. + The number of entries is given by the value of + xupsEnvNumContacts." + ::= { xupsEnvironment 8 } + +xupsContactsTableEntry OBJECT-TYPE + SYNTAX XupsContactsTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable + to a particular Contact input." + INDEX { xupsContactIndex } + ::= { xupsContactSenseTable 1 } + +XupsContactsTableEntry ::= SEQUENCE { + xupsContactIndex Integer32, + xupsContactType INTEGER, + xupsContactState INTEGER, + xupsContactDescr DisplayString + } + +xupsContactIndex OBJECT-TYPE + SYNTAX Integer32 (1..1024) + MAX-ACCESS read-only -- actually not-accessible + STATUS current + DESCRIPTION + "The Contact identifier; identical to the Contact Number. + This object is not-accessible to MIB browsers, but had to be changed to + read-only to satisfy SMIv2 syntax checkers if it is included in traps." + ::= { xupsContactsTableEntry 1 } + +xupsContactType OBJECT-TYPE + SYNTAX INTEGER { + normallyOpen(1), -- or Input Normally High + normallyClosed(2), -- or Input Normally Low + anyChange(3), -- No normal Open/Closed state + notUsed(4) -- Contact not in service or not alarming + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The normal state for this contact. The 'other' (not 'Normally') + state is the Active state for generating the xupstdContactActiveNotice + trap. If anyChange(3) is selected, then this trap is sent + any time the contact changes to either Open or Closed. + No traps are sent if the Contact is set to notUsed(4). + In many cases, the configuration for Contacts may be done by other + means, so this object may be read-only." + ::= { xupsContactsTableEntry 2 } + +xupsContactState OBJECT-TYPE + SYNTAX INTEGER { + open(1), + closed(2), + openWithNotice(3), + closedWithNotice(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the Contact input; + the value is based on the open/closed input state + and the setting for xupsContactType. + When entering the openWithNotice(3) and closedWithNotice(4) + states, no entries added to the xupsAlarmTable, but + the xupstdContactActiveNotice trap is sent." + ::= { xupsContactsTableEntry 3 } + +xupsContactDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A label identifying the Contact. This object should be + set by the administrator." + ::= { xupsContactsTableEntry 4 } + +xupsEnvRemoteTempLowerLimit OBJECT-TYPE + SYNTAX Integer32 (-100..200) + UNITS "degrees Centigrade" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Lower Limit of the EMP temperature; if xupsEnvRemoteTemp + falls below this value, the xupsRemoteTempBad alarm will occur." + ::= { xupsEnvironment 9 } + +xupsEnvRemoteTempUpperLimit OBJECT-TYPE + SYNTAX Integer32 (-100..200) + UNITS "degrees Centigrade" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Upper Limit of the EMP temperature; if xupsEnvRemoteTemp + rises above this value, the xupsRemoteTempBad alarm will occur. + This value should be greater than xupsEnvRemoteTempLowerLimit." + ::= { xupsEnvironment 10 } + +xupsEnvRemoteHumidityLowerLimit OBJECT-TYPE + SYNTAX Integer32 (0..100) + UNITS "percent" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Lower Limit of the EMP humidity reading; if xupsEnvRemoteHumidity + falls below this value, the xupsRemoteHumidityBad alarm will occur." + ::= { xupsEnvironment 11 } + +xupsEnvRemoteHumidityUpperLimit OBJECT-TYPE + SYNTAX Integer32 (0..100) + UNITS "percent" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Upper Limit of the EMP humidity reading; if xupsEnvRemoteHumidity + rises above this value, the xupsRemoteHumidityBad alarm will occur. + This value should be greater than xupsEnvRemoteHumidityLowerLimit." + ::= { xupsEnvironment 12 } + + +-- +-- Traps / Notifications for the EMP in the PowerMIB style +-- The special EMP traps are not normally provided by Power Xpert Gateways (which use +-- the PXG-style traps instead) but could be provided by PowerMIB implementations +-- These are found in the PowerMIB: +-- xupstdContactActiveNotice +-- xupstdContactInactiveNotice +-- xupstdRemoteTempBad +-- xupstdRemoteHumidityBad + + +-- +-- Conformance-related definitions +-- +eatonEMPConformance OBJECT IDENTIFIER ::= { eatonEMPMIB 2 } + +eatonEMPGroup OBJECT-GROUP + OBJECTS { xupsEnvRemoteTemp, xupsEnvRemoteHumidity, + xupsEnvRemoteTempLowerLimit, xupsEnvRemoteTempUpperLimit, + xupsEnvRemoteHumidityLowerLimit, xupsEnvRemoteHumidityUpperLimit } + STATUS current + DESCRIPTION + "The EMP scalar objects." + ::= { eatonEMPConformance 1 } + +eatonEMPTableGroup OBJECT-GROUP + OBJECTS { xupsEnvNumContacts, xupsContactIndex, xupsContactType, + xupsContactState, xupsContactDescr } + STATUS current + DESCRIPTION + "The EMP Contacts Table objects." + ::= { eatonEMPConformance 2 } + + +eatonEMPSimpleCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for a normal EMP." + MODULE -- this module + MANDATORY-GROUPS { eatonEMPGroup, eatonEMPTableGroup } + ::= { eatonEMPConformance 4 } + + + + + +END + diff --git a/mibs/mge/EATON-OIDS b/mibs/mge/EATON-OIDS new file mode 100644 index 0000000000..d64e1ac1c4 --- /dev/null +++ b/mibs/mge/EATON-OIDS @@ -0,0 +1,183 @@ +EATON-OIDS DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, enterprises FROM SNMPv2-SMI + Integer32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC; + +eaton MODULE-IDENTITY + LAST-UPDATED "201402190000Z" + ORGANIZATION "Eaton Corporation" + CONTACT-INFO + "Eaton Power Quality Technical Support (PQTS) group + www.eaton.com/powerxpert + Technical Resource Center phone numbers + United States: 1.800.843.9433 or 919.870.3028 + Canada: 1.800.461.9166 ext. 260 + All other countries: Call your local service representative." + DESCRIPTION + "Assigns major branches from the root of + Eaton's OID tree (534). + + Copyright (C) Exide Electronics 1992-98 + Copyright (C) Powerware Corporation 1999-2004 + Copyright (C) Eaton Corporation (2005-)." + + REVISION "201402190000Z" + DESCRIPTION + "Added assignments for stsMIB." + + REVISION "201001240000Z" + DESCRIPTION + "Added assignments for eatonEpdu and eatonEpduMa." + + REVISION "200906180000Z" + DESCRIPTION + "Added assignments for powerCmnd and OSDCIIMIB." + + + REVISION "200708060000Z" + DESCRIPTION + "Added assignments for pcdMIB and pxmMIB. + Added common Textual Conventions for Integers." + + REVISION "200707050000Z" + DESCRIPTION + "Added assignment for eatonEpduMIB. + Cleaned up file for public consumption." + + REVISION "200610150000Z" + DESCRIPTION + "Added assignments for powerChain and pxgMIB." + + REVISION "200605250000Z" + DESCRIPTION + "Revised from the original assignments in XUPS-MIB.txt. + Note that enterprises.534. was originally assigned to Exide + Electronics before Powerware was acquired by Eaton." + + ::= { enterprises 534 } + +-- EATON-OIDS { iso org(3) dod(6) internet(1) private(4) +-- enterprises(1) eaton(534) } + + +-- The Powerware "PowerMIB" for UPSs +xupsMIB OBJECT IDENTIFIER ::= {eaton 1} +-- Define the Environment group here since it is used in the Eaton-EMP-MIB as well +xupsEnvironment OBJECT IDENTIFIER ::= {xupsMIB 6} + +-- +-- The root of the list of Object Identifiers that are used to +-- distinguish Eaton's SNMP agents (for use in sysObjId): +xupsObjectId OBJECT IDENTIFIER ::= {eaton 2} + powerwareEthernetSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 1} + powerwareNetworkSnmpAdapterEther OBJECT IDENTIFIER ::= {xupsObjectId 2} + powerwareNetworkSnmpAdapterToken OBJECT IDENTIFIER ::= {xupsObjectId 3} + onlinetDaemon OBJECT IDENTIFIER ::= {xupsObjectId 4} + connectUPSAdapterEthernet OBJECT IDENTIFIER ::= {xupsObjectId 5} + powerwareNetworkDigitalIOEther OBJECT IDENTIFIER ::= {xupsObjectId 6} + connectUPSAdapterTokenRing OBJECT IDENTIFIER ::= {xupsObjectId 7} + simpleSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 8} + powerwareEliSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 9} + powerwareBasicEmbeddedEthernet OBJECT IDENTIFIER ::= {xupsObjectId 10} + eatonPowerChainGateway OBJECT IDENTIFIER ::= {xupsObjectId 11} + eatonPowerChainDevice OBJECT IDENTIFIER ::= {xupsObjectId 12} + eatonPowerXpertMeter OBJECT IDENTIFIER ::= {xupsObjectId 13} + + +-- Digital IO MIB (deprecated) +-- File XUPSIOV1.MIB +xupsIoMIB OBJECT IDENTIFIER ::= {eaton 3} + +-- DataTrax Forseer and Powervision branch +powerVision OBJECT IDENTIFIER ::= {eaton 4} + +-- orphaned: BEEP (Basic Embedded Ethernet Product) +-- File XUPS-BASIC-MIB.txt +--xupsBasic OBJECT IDENTIFIER ::= {eaton 5} + +-- A branch for Powerware Product MIBs +products OBJECT IDENTIFIER ::= {eaton 6} + -- Product assignments + + pduAgent OBJECT IDENTIFIER ::= {products 6} + -- pduAgent product assignments + -- File MIB_hdpdu.mib for HD PDU + hdpdu OBJECT IDENTIFIER ::= {pduAgent 2} + + -- MIB for Eaton PDU, first for 9315's 3-phase PDU + -- Defined in EATON-PDU-MIB.txt + eatonPdu OBJECT IDENTIFIER ::= {pduAgent 4} + + -- MIB for Eaton Powerware first-generation Managed ePDUs + -- Defined in EATON-EPDU-MA-MIB.txt + -- eatonEpduMa OBJECT IDENTIFIER ::= {pduAgent 6} + + -- MIB for Eaton Powerware ePDUs + -- Defined in EATON-EPDU-MIB.txt + -- eatonEpdu OBJECT IDENTIFIER ::= {pduAgent 7} + + + dataCenter OBJECT IDENTIFIER ::= {products 7} + -- dataCenter product assignments + environmentalMonitor OBJECT IDENTIFIER ::= {dataCenter 1} + + +-- A branch for Eaton IT Department +itProjects OBJECT IDENTIFIER ::= {eaton 7} + pki OBJECT IDENTIFIER ::= {itProjects 1} + +-- A branch for PowerChain Product MIBs +powerChain OBJECT IDENTIFIER ::= {eaton 8} + -- Product assignments + + -- MIB to support Alarms and Events in PowerXpert toolkit-enabled + -- Devices, Gateways, PXMeters + -- Defined in file EATON-PXG-MIB.txt + -- pxgMIB OBJECT IDENTIFIER ::= {powerChain 1} + + -- MIB to support common measures in Power Chain Devices + -- Defined in file EATON-PCD-MIB.txt + -- pcdMIB OBJECT IDENTIFIER ::= {powerChain 2} + + -- MIB to support power measures in Power Meters + -- Defined in file EATON-PWR-MTR-MIB.txt + -- pxmMIB OBJECT IDENTIFIER ::= {powerChain 3} + +-- A branch for powercomand commercial control Product MIBs +powerCmnd OBJECT IDENTIFIER ::= {eaton 9} + + -- Product assignments + -- MIB to support the OSDCII controller + -- Defined in file EATON-OSDCII-MIB.txt + -- osdcMIB OBJECT IDENTIFIER ::= {powerCmnd 1} + +-- A branch for Eaton STS devices MIBs +sts OBJECT IDENTIFIER ::= {eaton 10} + + -- Product assignments + -- MIB to support the data in STS devices + -- Defined in file Eaton-STS.MIB + -- stsMIB OBJECT IDENTIFIER ::= {ats 1} + +-- Define some common Textual Conventions +-- PositiveInteger and NonNegativeInteger are borrowed from RFC1628 + PositiveInteger ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This data type is a non-zero and non-negative value." + SYNTAX Integer32 (1..2147483647) + + NonNegativeInteger ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This data type is a non-negative value." + SYNTAX Integer32 (0..2147483647) + + + + END + diff --git a/tests/data/eaton-mgeups_5px.json b/tests/data/eaton-mgeups_5px.json new file mode 100644 index 0000000000..bdedfd8b75 --- /dev/null +++ b/tests/data/eaton-mgeups_5px.json @@ -0,0 +1,2144 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.705.1", + "sysDescr": "Eaton 5PX 3000", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "eaton-mgeups", + "type": "power", + "serial": null, + "icon": "eaton.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.705.1", + "sysDescr": "Eaton 5PX 3000", + "sysContact": "", + "version": "06", + "hardware": "Eaton 5PX 3000", + "features": null, + "os": "eaton-mgeups", + "type": "power", + "serial": "G4294C3232", + "icon": "eaton.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "LOOPBACK", + "ifName": "LOOPBACK", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "LOOPBACK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "LOOPBACK", + "ifName": "LOOPBACK", + "portName": null, + "ifIndex": 1, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "LOOPBACK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "002085f51e2c", + "ifHardType": null, + "ifLastChange": 230, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 236937, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 170164, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 44870299, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 95041326, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 181882, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 27997, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 48723, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "charge", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.2.0", + "sensor_index": "upsmgBatteryLevel.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Remaining battery capacity", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 100, + "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": "charge", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.4.0", + "sensor_index": "500", + "sensor_type": "rfc1628", + "sensor_descr": "Battery charge remaining", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 100, + "sensor_limit": 101, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 50, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.6.1.0", + "sensor_index": "mginputCurrent.1.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Current Phase 1.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.6.2.0", + "sensor_index": "mginputCurrent.2.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Current Phase 2.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.6.3.0", + "sensor_index": "mginputCurrent.3.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Current Phase 3.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.5.1", + "sensor_index": "mgoutputCurrent.1", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Current Phase 1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 10.5, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.5.2", + "sensor_index": "mgoutputCurrent.2", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Current Phase 2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 10.5, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.5.3", + "sensor_index": "mgoutputCurrent.3", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Current Phase 3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 10.5, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.6.0", + "sensor_index": "upsmgBatteryCurrent.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Battery", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.3.1", + "sensor_index": "1", + "sensor_type": "rfc1628", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 7.8, + "sensor_limit": 11.7, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.4.1", + "sensor_index": "101", + "sensor_type": "rfc1628", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.6.0", + "sensor_index": "500", + "sensor_type": "rfc1628", + "sensor_descr": "Battery", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "delay", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.1.0", + "sensor_index": "upsmgBatteryRemainingTime.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Remaining time", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2594, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.3.1.0", + "sensor_index": "mginputFrequency.1.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Frequency Phase 1.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.3.2.0", + "sensor_index": "mginputFrequency.2.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Frequency Phase 2.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.3.3.0", + "sensor_index": "mginputFrequency.3.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Frequency Phase 3.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.3.1", + "sensor_index": "mgoutputFrequency.1", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Frequency Phase 1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.3.2", + "sensor_index": "mgoutputFrequency.2", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Frequency Phase 2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.3.3", + "sensor_index": "mgoutputFrequency.3", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Frequency Phase 3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.2.1", + "sensor_index": "3.2.0.1", + "sensor_type": "rfc1628", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.2.0", + "sensor_index": "4.2.0", + "sensor_type": "rfc1628", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.5.1.0", + "sensor_index": "5.1.0", + "sensor_type": "rfc1628", + "sensor_descr": "Bypass", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "humidity", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.534.1.6.6.0", + "sensor_index": "xupsEnvRemoteHumidity.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Environment", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 15, + "sensor_limit": 70, + "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": "load", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.5.1", + "sensor_index": "501", + "sensor_type": "rfc1628", + "sensor_descr": "Percentage load", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 59, + "sensor_limit": 80, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.4.1", + "sensor_index": "kva.mgoutputLoadPerPhase.1", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output (VA) Phase 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1000, + "sensor_current": 59000, + "sensor_limit": 88500, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.4.2", + "sensor_index": "kva.mgoutputLoadPerPhase.2", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output (VA) Phase 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1000, + "sensor_current": 59000, + "sensor_limit": 88500, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.4.3", + "sensor_index": "kva.mgoutputLoadPerPhase.3", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output (VA) Phase 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1000, + "sensor_current": 59000, + "sensor_limit": 88500, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.5.1", + "sensor_index": "101", + "sensor_type": "rfc1628", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.4.1", + "sensor_index": "301", + "sensor_type": "rfc1628", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1593, + "sensor_limit": 2389.5, + "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": "runtime", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.2.0", + "sensor_index": "100", + "sensor_type": "rfc1628", + "sensor_descr": "Time on battery", + "group": null, + "sensor_divisor": 60, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 2, + "sensor_limit_warn": 1, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "runtime", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.3.0", + "sensor_index": "200", + "sensor_type": "rfc1628", + "sensor_descr": "Estimated battery time remaining", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 43, + "sensor_limit": 10000, + "sensor_limit_warn": null, + "sensor_limit_low": 5, + "sensor_limit_low_warn": 10, + "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.2.1.33.1.2.1.0", + "sensor_index": "0", + "sensor_type": "upsBatteryStatusState", + "sensor_descr": "Battery Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsBatteryStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.15.0", + "sensor_index": "upsmgBatteryChargerFault.0", + "sensor_type": "upsmgBatteryChargerFault", + "sensor_descr": "Battery Charger Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgBatteryChargerFault" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.9.0", + "sensor_index": "upsmgBatteryFaultBattery.0", + "sensor_type": "upsmgBatteryFaultBattery", + "sensor_descr": "Battery Fault", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgBatteryFaultBattery" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.14.0", + "sensor_index": "upsmgBatteryLowBattery.0", + "sensor_type": "upsmgBatteryLowBattery", + "sensor_descr": "Battery Charge Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgBatteryLowBattery" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.16.0", + "sensor_index": "upsmgBatteryLowCondition.0", + "sensor_type": "upsmgBatteryLowCondition", + "sensor_descr": "Battery Condition", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgBatteryLowCondition" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.11.0", + "sensor_index": "upsmgBatteryReplacement.0", + "sensor_type": "upsmgBatteryReplacement", + "sensor_descr": "Battery Replacement Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgBatteryReplacement" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.3.0", + "sensor_index": "upsmgInputBadStatus.0", + "sensor_type": "upsmgInputBadStatus", + "sensor_descr": "Input Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgInputBadStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.4.0", + "sensor_index": "upsmgInputLineFailCause.0", + "sensor_type": "upsmgInputLineFailCause", + "sensor_descr": "Input Line Fail Cause", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgInputLineFailCause" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.9.0", + "sensor_index": "upsmgOutputInverterOff.0", + "sensor_type": "upsmgOutputInverterOff", + "sensor_descr": "UPS Inverter Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputInverterOff" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.3.0", + "sensor_index": "upsmgOutputOnBattery.0", + "sensor_type": "upsmgOutputOnBattery", + "sensor_descr": "Input Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputOnBattery" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.4.0", + "sensor_index": "upsmgOutputOnBypass.0", + "sensor_type": "upsmgOutputOnByPass", + "sensor_descr": "Bypass Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputOnByPass" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.10.0", + "sensor_index": "upsmgOutputOverLoad.0", + "sensor_type": "upsmgOutputOverLoad", + "sensor_descr": "Output OverLoad", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputOverLoad" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.11.0", + "sensor_index": "upsmgOutputOverTemp.0", + "sensor_type": "upsmgOutputOverTemp", + "sensor_descr": "Over Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputOverTemp" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.7.0", + "sensor_index": "upsmgOutputUtilityOff.0", + "sensor_type": "upsmgOutputUtilityOff", + "sensor_descr": "Utility Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsmgOutputUtilityOff" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.1.0", + "sensor_index": "0", + "sensor_type": "upsOutputSourceState", + "sensor_descr": "Output Source", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsOutputSourceState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.534.1.6.5.0", + "sensor_index": "xupsEnvRemoteTemp.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Environment", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.7.0", + "sensor_index": "0", + "sensor_type": "rfc1628", + "sensor_descr": "Battery", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 20, + "sensor_limit_warn": null, + "sensor_limit_low": -10, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.2.1.0", + "sensor_index": "mginputVoltage.1.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Phase/Phase 1.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.2.2.0", + "sensor_index": "mginputVoltage.2.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Phase/Phase 2.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.6.2.1.2.3.0", + "sensor_index": "mginputVoltage.3.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Input Phase/Phase 3.0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.2.1", + "sensor_index": "mgoutputVoltage.1", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Phase/Phase 1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.2.2", + "sensor_index": "mgoutputVoltage.2", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Phase/Phase 2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.7.2.1.2.3", + "sensor_index": "mgoutputVoltage.3", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Output Phase/Phase 3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.705.1.5.5.0", + "sensor_index": "upsmgBatteryVoltage.0", + "sensor_type": "eaton-mgeups", + "sensor_descr": "Battery", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 81, + "sensor_limit": 93.15, + "sensor_limit_warn": null, + "sensor_limit_low": 68.85, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.2.1", + "sensor_index": "1", + "sensor_type": "rfc1628", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.2.5.0", + "sensor_index": "1.2.5.0", + "sensor_type": "rfc1628", + "sensor_descr": "Battery", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 81, + "sensor_limit": 93.15, + "sensor_limit_warn": null, + "sensor_limit_low": 68.85, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.3.1", + "sensor_index": "101", + "sensor_type": "rfc1628", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 229, + "sensor_limit": 263.35, + "sensor_limit_warn": null, + "sensor_limit_low": 194.65, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "upsBatteryStatusState", + "state_descr": "Unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "upsBatteryStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsBatteryStatusState", + "state_descr": "Low", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "upsBatteryStatusState", + "state_descr": "Depleted", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryChargerFault", + "state_descr": "Fault", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryChargerFault", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgBatteryFaultBattery", + "state_descr": "Fault", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryFaultBattery", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgBatteryLowBattery", + "state_descr": "Low Battery", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryLowBattery", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgBatteryLowCondition", + "state_descr": "Low Condition", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryLowCondition", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgBatteryReplacement", + "state_descr": "To be replaced", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgBatteryReplacement", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgInputBadStatus", + "state_descr": "Bad Status", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgInputBadStatus", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgInputLineFailCause", + "state_descr": "No Failure", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "upsmgInputLineFailCause", + "state_descr": "Tolerance Volt. Out", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "upsmgInputLineFailCause", + "state_descr": "Tolerance Freq. Out", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "upsmgInputLineFailCause", + "state_descr": "No Voltage", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputInverterOff", + "state_descr": "Inverter Off", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputInverterOff", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgOutputOnBattery", + "state_descr": "On Battery", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputOnBattery", + "state_descr": "On Input Power", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgOutputOnByPass", + "state_descr": "On ByPass", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputOnByPass", + "state_descr": "Not Active", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgOutputOverLoad", + "state_descr": "Yes", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputOverLoad", + "state_descr": "No", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgOutputOverTemp", + "state_descr": "Over Temperature", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputOverTemp", + "state_descr": "OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsmgOutputUtilityOff", + "state_descr": "No Voltage", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "upsmgOutputUtilityOff", + "state_descr": "Output OK", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Other", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "None", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Bypass", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Battery", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Booster", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "upsOutputSourceState", + "state_descr": "Reducer", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/eaton-mgeups_5px.snmprec b/tests/snmpsim/eaton-mgeups_5px.snmprec index f9f4a87e04..319088269f 100644 --- a/tests/snmpsim/eaton-mgeups_5px.snmprec +++ b/tests/snmpsim/eaton-mgeups_5px.snmprec @@ -1,2 +1,380 @@ -1.3.6.1.2.1.1.1.0|4|Eaton 5PX 2000 +1.3.6.1.2.1.1.1.0|4|Eaton 5PX 3000 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.705.1 +1.3.6.1.2.1.1.3.0|67|8855446 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.2.1|4|LOOPBACK +1.3.6.1.2.1.2.2.1.2.2|4|eth0 +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|0 +1.3.6.1.2.1.2.2.1.5.2|66|10000000 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4x|002085F51E2C +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|230 +1.3.6.1.2.1.2.2.1.10.1|65|0 +1.3.6.1.2.1.2.2.1.10.2|65|44870299 +1.3.6.1.2.1.2.2.1.11.1|65|0 +1.3.6.1.2.1.2.2.1.11.2|65|236937 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|181882 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|48723 +1.3.6.1.2.1.2.2.1.16.1|65|0 +1.3.6.1.2.1.2.2.1.16.2|65|95041326 +1.3.6.1.2.1.2.2.1.17.1|65|0 +1.3.6.1.2.1.2.2.1.17.2|65|170164 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|27997 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|18 +1.3.6.1.2.1.2.2.1.22.1|6|0.0 +1.3.6.1.2.1.2.2.1.22.2|6|0.0 +1.3.6.1.2.1.4.3.0|65|310100 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|2 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|196165 +1.3.6.1.2.1.4.10.0|65|180014 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|0 +1.3.6.1.2.1.4.14.0|65|4419 +1.3.6.1.2.1.4.15.0|65|1473 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|5346 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.192.168.254.7|2|2 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.192.168.254.7|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.2.192.168.254.241|4x|001CC4E376AA +1.3.6.1.2.1.4.22.1.2.2.192.168.254.242|4x|001708530637 +1.3.6.1.2.1.4.22.1.2.2.192.168.254.246|4x|367428996373 +1.3.6.1.2.1.4.31.1.1.3.1|65|0 +1.3.6.1.2.1.4.31.1.1.3.2|65|12358 +1.3.6.1.2.1.4.31.1.1.4.1|70|0 +1.3.6.1.2.1.4.31.1.1.4.2|70|12358 +1.3.6.1.2.1.4.31.1.1.5.1|65|44861225 +1.3.6.1.2.1.4.31.1.1.5.2|65|0 +1.3.6.1.2.1.4.31.1.1.6.1|70|44861407 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|48723 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|65|0 +1.3.6.1.2.1.4.31.1.1.13.2|65|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|53 +1.3.6.1.2.1.4.31.1.1.18.1|65|0 +1.3.6.1.2.1.4.31.1.1.18.2|65|7 +1.3.6.1.2.1.4.31.1.1.19.1|65|0 +1.3.6.1.2.1.4.31.1.1.19.2|65|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|0 +1.3.6.1.2.1.4.31.1.1.20.2|65|0 +1.3.6.1.2.1.4.31.1.1.21.1|65|0 +1.3.6.1.2.1.4.31.1.1.21.2|65|0 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|65|0 +1.3.6.1.2.1.4.31.1.1.24.2|65|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|70|0 +1.3.6.1.2.1.4.31.1.1.27.2|70|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|95034387 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|70|95034566 +1.3.6.1.2.1.4.31.1.1.29.2|70|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|111003 +1.3.6.1.2.1.4.31.1.1.30.2|65|53 +1.3.6.1.2.1.4.31.1.1.31.1|70|111003 +1.3.6.1.2.1.4.31.1.1.31.2|70|53 +1.3.6.1.2.1.4.31.1.1.32.1|65|0 +1.3.6.1.2.1.4.31.1.1.32.2|65|0 +1.3.6.1.2.1.4.31.1.1.33.1|70|0 +1.3.6.1.2.1.4.31.1.1.33.2|70|0 +1.3.6.1.2.1.4.31.1.1.34.1|65|2 +1.3.6.1.2.1.4.31.1.1.34.2|65|7 +1.3.6.1.2.1.4.31.1.1.35.1|70|2 +1.3.6.1.2.1.4.31.1.1.35.2|70|7 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|0 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|70879 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|70879 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|27994 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|27994 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|2|0 +1.3.6.1.2.1.4.31.1.1.42.2|2|0 +1.3.6.1.2.1.4.31.1.1.43.1|2|0 +1.3.6.1.2.1.4.31.1.1.43.2|2|0 +1.3.6.1.2.1.4.35.1.4.1|2|0 +1.3.6.1.2.1.4.35.1.4.2|2|0 +1.3.6.1.2.1.5.1.0|65|3883 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|3883 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|3884 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|1 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|3883 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.27.1.2.1|65|3883 +1.3.6.1.2.1.5.27.1.2.2|65|53 +1.3.6.1.2.1.5.27.1.3.1|65|0 +1.3.6.1.2.1.5.27.1.3.2|65|0 +1.3.6.1.2.1.5.27.1.4.1|65|3884 +1.3.6.1.2.1.5.27.1.4.2|65|2 +1.3.6.1.2.1.5.27.1.5.1|65|0 +1.3.6.1.2.1.5.27.1.5.2|65|0 +1.3.6.1.2.1.5.28.1.3.1.0|65|0 +1.3.6.1.2.1.5.28.1.3.1.3|65|0 +1.3.6.1.2.1.5.28.1.3.1.4|65|0 +1.3.6.1.2.1.5.28.1.3.1.5|65|0 +1.3.6.1.2.1.5.28.1.3.1.8|65|3883 +1.3.6.1.2.1.5.28.1.3.1.9|65|0 +1.3.6.1.2.1.5.28.1.3.1.10|65|0 +1.3.6.1.2.1.5.28.1.3.1.11|65|0 +1.3.6.1.2.1.5.28.1.3.1.12|65|0 +1.3.6.1.2.1.5.28.1.3.1.13|65|0 +1.3.6.1.2.1.5.28.1.3.1.14|65|0 +1.3.6.1.2.1.5.28.1.3.1.15|65|0 +1.3.6.1.2.1.5.28.1.3.1.16|65|0 +1.3.6.1.2.1.5.28.1.3.1.17|65|0 +1.3.6.1.2.1.5.28.1.3.1.18|65|0 +1.3.6.1.2.1.5.28.1.3.2.1|65|0 +1.3.6.1.2.1.5.28.1.3.2.2|65|0 +1.3.6.1.2.1.5.28.1.3.2.3|65|0 +1.3.6.1.2.1.5.28.1.3.2.4|65|0 +1.3.6.1.2.1.5.28.1.3.2.128|65|0 +1.3.6.1.2.1.5.28.1.3.2.129|65|0 +1.3.6.1.2.1.5.28.1.3.2.130|65|0 +1.3.6.1.2.1.5.28.1.3.2.131|65|0 +1.3.6.1.2.1.5.28.1.3.2.132|65|0 +1.3.6.1.2.1.5.28.1.3.2.133|65|53 +1.3.6.1.2.1.5.28.1.3.2.134|65|0 +1.3.6.1.2.1.5.28.1.3.2.135|65|0 +1.3.6.1.2.1.5.28.1.3.2.136|65|0 +1.3.6.1.2.1.5.28.1.3.2.137|65|0 +1.3.6.1.2.1.5.28.1.4.1.0|65|3883 +1.3.6.1.2.1.5.28.1.4.1.3|65|1 +1.3.6.1.2.1.5.28.1.4.1.4|65|0 +1.3.6.1.2.1.5.28.1.4.1.5|65|0 +1.3.6.1.2.1.5.28.1.4.1.8|65|0 +1.3.6.1.2.1.5.28.1.4.1.9|65|0 +1.3.6.1.2.1.5.28.1.4.1.10|65|0 +1.3.6.1.2.1.5.28.1.4.1.11|65|0 +1.3.6.1.2.1.5.28.1.4.1.12|65|0 +1.3.6.1.2.1.5.28.1.4.1.13|65|0 +1.3.6.1.2.1.5.28.1.4.1.14|65|0 +1.3.6.1.2.1.5.28.1.4.1.15|65|0 +1.3.6.1.2.1.5.28.1.4.1.16|65|0 +1.3.6.1.2.1.5.28.1.4.1.17|65|0 +1.3.6.1.2.1.5.28.1.4.1.18|65|0 +1.3.6.1.2.1.5.28.1.4.2.1|65|0 +1.3.6.1.2.1.5.28.1.4.2.2|65|0 +1.3.6.1.2.1.5.28.1.4.2.3|65|0 +1.3.6.1.2.1.5.28.1.4.2.4|65|0 +1.3.6.1.2.1.5.28.1.4.2.128|65|0 +1.3.6.1.2.1.5.28.1.4.2.129|65|0 +1.3.6.1.2.1.5.28.1.4.2.130|65|0 +1.3.6.1.2.1.5.28.1.4.2.131|65|1 +1.3.6.1.2.1.5.28.1.4.2.132|65|1 +1.3.6.1.2.1.5.28.1.4.2.133|65|0 +1.3.6.1.2.1.5.28.1.4.2.134|65|0 +1.3.6.1.2.1.5.28.1.4.2.135|65|0 +1.3.6.1.2.1.5.28.1.4.2.136|65|0 +1.3.6.1.2.1.5.28.1.4.2.137|65|0 +1.3.6.1.2.1.6.5.0|65|2 +1.3.6.1.2.1.6.6.0|65|3363 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|198 +1.3.6.1.2.1.6.9.0|66|4 +1.3.6.1.2.1.6.10.0|65|67964 +1.3.6.1.2.1.6.11.0|65|50120 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|180 +1.3.6.1.2.1.6.17.0|70|67964 +1.3.6.1.2.1.6.18.0|70|50120 +1.3.6.1.2.1.7.1.0|65|103557 +1.3.6.1.2.1.7.2.0|65|20807 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|105142 +1.3.6.1.2.1.11.1.0|65|89829 +1.3.6.1.2.1.11.2.0|65|89829 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|6495 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|98422 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|12365 +1.3.6.1.2.1.11.16.0|65|77478 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|6495 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|89853 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.33.1.1.1.0|4|EATON +1.3.6.1.2.1.33.1.2.1.0|2|2 +1.3.6.1.2.1.33.1.2.2.0|2|0 +1.3.6.1.2.1.33.1.2.3.0|2|43 +1.3.6.1.2.1.33.1.2.4.0|2|100 +1.3.6.1.2.1.33.1.2.5.0|2|810 +1.3.6.1.2.1.33.1.2.6.0|2|0 +1.3.6.1.2.1.33.1.2.7.0|2|0 +1.3.6.1.2.1.33.1.3.3.1.2.1|2|500 +1.3.6.1.2.1.33.1.3.3.1.3.1|2|229 +1.3.6.1.2.1.33.1.3.3.1.4.1|2|0 +1.3.6.1.2.1.33.1.3.3.1.5.1|2|0 +1.3.6.1.2.1.33.1.4.1.0|2|3 +1.3.6.1.2.1.33.1.4.2.0|2|500 +1.3.6.1.2.1.33.1.4.4.1.2.1|2|229 +1.3.6.1.2.1.33.1.4.4.1.3.1|2|78 +1.3.6.1.2.1.33.1.4.4.1.4.1|2|1593 +1.3.6.1.2.1.33.1.4.4.1.5.1|2|59 +1.3.6.1.2.1.33.1.5.1.0|2|0 +1.3.6.1.4.1.534.1.6.1.0|2|0 +1.3.6.1.4.1.534.1.6.2.0|2|0 +1.3.6.1.4.1.534.1.6.3.0|2|40 +1.3.6.1.4.1.534.1.6.5.0|2|33 +1.3.6.1.4.1.534.1.6.6.0|2|15 +1.3.6.1.4.1.534.1.6.7.0|2|2 +1.3.6.1.4.1.534.1.6.8.1.1.1|2|1 +1.3.6.1.4.1.534.1.6.8.1.1.2|2|2 +1.3.6.1.4.1.534.1.6.8.1.2.1|2|4 +1.3.6.1.4.1.534.1.6.8.1.2.2|2|4 +1.3.6.1.4.1.534.1.6.8.1.3.1|2|1 +1.3.6.1.4.1.534.1.6.8.1.3.2|2|1 +1.3.6.1.4.1.534.1.6.8.1.4.1|4|Input #1 +1.3.6.1.4.1.534.1.6.8.1.4.2|4|Input #2 +1.3.6.1.4.1.534.1.6.9.0|2|5 +1.3.6.1.4.1.534.1.6.10.0|2|33 +1.3.6.1.4.1.534.1.6.11.0|2|5 +1.3.6.1.4.1.534.1.6.12.0|2|90 +1.3.6.1.4.1.705.1.1.1.0|4|Eaton 5PX +1.3.6.1.4.1.705.1.1.2.0|4|3000 +1.3.6.1.4.1.705.1.1.4.0|4|06 +1.3.6.1.4.1.705.1.1.7.0|4|G4294C3232 +1.3.6.1.4.1.705.1.5.1.0|2|2594 +1.3.6.1.4.1.705.1.5.2.0|2|100 +1.3.6.1.4.1.705.1.5.5.0|2|810 +1.3.6.1.4.1.705.1.5.6.0|2|0 +1.3.6.1.4.1.705.1.5.9.0|2|2 +1.3.6.1.4.1.705.1.5.11.0|2|2 +1.3.6.1.4.1.705.1.5.14.0|2|2 +1.3.6.1.4.1.705.1.5.15.0|2|2 +1.3.6.1.4.1.705.1.5.16.0|2|2 +1.3.6.1.4.1.705.1.6.2.1.2.1.0|2|2290 +1.3.6.1.4.1.705.1.6.2.1.2.2.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.2.3.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.3.1.0|2|500 +1.3.6.1.4.1.705.1.6.2.1.3.2.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.3.3.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.4.0|2|500 +1.3.6.1.4.1.705.1.6.2.1.5.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.6.1.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.6.2.0|2|0 +1.3.6.1.4.1.705.1.6.2.1.6.3.0|2|0 +1.3.6.1.4.1.705.1.6.3.0|2|2 +1.3.6.1.4.1.705.1.6.4.0|2|1 +1.3.6.1.4.1.705.1.7.2.1.1.1|2|1 +1.3.6.1.4.1.705.1.7.2.1.1.2|2|2 +1.3.6.1.4.1.705.1.7.2.1.1.3|2|3 +1.3.6.1.4.1.705.1.7.2.1.2.1|2|2290 +1.3.6.1.4.1.705.1.7.2.1.2.2|2|2290 +1.3.6.1.4.1.705.1.7.2.1.2.3|2|2290 +1.3.6.1.4.1.705.1.7.2.1.3.1|2|500 +1.3.6.1.4.1.705.1.7.2.1.3.2|2|500 +1.3.6.1.4.1.705.1.7.2.1.3.3|2|500 +1.3.6.1.4.1.705.1.7.2.1.4.1|2|59 +1.3.6.1.4.1.705.1.7.2.1.4.2|2|59 +1.3.6.1.4.1.705.1.7.2.1.4.3|2|59 +1.3.6.1.4.1.705.1.7.2.1.5.1|2|70 +1.3.6.1.4.1.705.1.7.2.1.5.2|2|70 +1.3.6.1.4.1.705.1.7.2.1.5.3|2|70 +1.3.6.1.4.1.705.1.7.3.0|2|2 +1.3.6.1.4.1.705.1.7.4.0|2|2 +1.3.6.1.4.1.705.1.7.7.0|2|2 +1.3.6.1.4.1.705.1.7.9.0|2|1 +1.3.6.1.4.1.705.1.7.10.0|2|2 +1.3.6.1.4.1.705.1.7.11.0|2|2 +1.3.6.1.6.3.10.2.1.3.0|2|88554