refactor: Move more state sensors to yaml (#8016)

* refactor: Move more state sensors to yaml

* Fix errors..

* Update comware.yaml

* Update ddnos.yaml

* Update dell-ups.yaml

* Update mimosa.yaml

* Update waas.yaml

* added some test data for comware and dell-ups

* added mimosa test data

* re-saved comware test data

* set arp-table sort order.
remove unneeded modules from mimosa

* remove arp-table it doesn't work yet

* remove deleted sensors and mempools (which have no snmp data)
This commit is contained in:
Søren Rosiak 2018-01-21 22:43:19 +01:00 committed by Tony Murray
parent 10e5873f55
commit 14b2419248
17 changed files with 69166 additions and 309 deletions

View File

@ -0,0 +1,27 @@
mib: HH3C-LswDEVM-MIB
modules:
sensors:
state:
data:
-
oid: hh3cdevMFanStatusTable
value: hh3cDevMFanStatus
num_oid: .1.3.6.1.4.1.25506.8.35.9.1.1.1.2.
descr: 'Fan {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: active, graph: 1, generic: 0 }
- { value: 2, descr: deactive, graph: 1, generic: 2 }
- { value: 3, descr: not-install, graph: 1, generic: 3 }
- { value: 4, descr: unsupport, graph: 1, generic: 1 }
-
oid: hh3cdevMPowerStatusTable
value: hh3cDevMPowerStatus
num_oid: .1.3.6.1.4.1.25506.8.35.9.1.2.1.2.
descr: 'Power Supply {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: active, graph: 1, generic: 0 }
- { value: 2, descr: deactive, graph: 1, generic: 2 }
- { value: 3, descr: not-install, graph: 1, generic: 3 }
- { value: 4, descr: unsupport, graph: 1, generic: 1 }

View File

@ -0,0 +1,44 @@
mib: SFA-INFO
modules:
sensors:
state:
data:
-
oid: tempTable
value: tempStatus
num_oid: .1.3.6.1.4.1.6894.2.2.1.4.
descr: 'Temperature Sensor {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: normal, graph: 1, generic: 0 }
- { value: 2, descr: warning, graph: 1, generic: 1 }
- { value: 3, descr: critical, graph: 1, generic: 2 }
-
oid: fanTable
value: fanStatus
num_oid: .1.3.6.1.4.1.6894.2.4.1.4.
descr: 'Fan Sensor {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: healthy, graph: 1, generic: 0 }
- { value: 2, descr: failure, graph: 1, generic: 2 }
-
oid: powerTable
value: powerStatus
num_oid: .1.3.6.1.4.1.6894.2.6.1.4.
descr: 'Power Supply Sensor {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: healthy, graph: 1, generic: 0 }
- { value: 2, descr: failure, graph: 1, generic: 2 }
-
oid: physicalDiskTable
value: physDiskState
num_oid: .1.3.6.1.4.1.6894.2.9.1.7.
descr: 'Disk Sensor {{ $index }}'
index: '{{ $index }}'
states:
- { value: 1, descr: normal, graph: 1, generic: 0 }
- { value: 2, descr: failed, graph: 1, generic: 2 }
- { value: 3, descr: predictedfailure, graph: 1, generic: 1 }
- { value: 4, descr: unknown, graph: 1, generic: 3 }

View File

@ -0,0 +1,18 @@
mib: DELL-SNMP-UPS-MIB
modules:
sensors:
state:
data:
-
oid: productStatusGlobalStatus
value: productStatusGlobalStatus
num_oid: .1.3.6.1.4.1.674.10902.2.110.1.
descr: 'Current Status'
index: '{{ $index }}'
states:
- { value: 1, descr: other, graph: 1, generic: 3 }
- { value: 2, descr: unknown, graph: 1, generic: 3 }
- { value: 3, descr: ok, graph: 1, generic: 0 }
- { value: 4, descr: non-critical, graph: 1, generic: 1 }
- { value: 5, descr: critical, graph: 1, generic: 2 }
- { value: 6, descr: non-recoverable, graph: 1, generic: 2 }

View File

@ -0,0 +1,14 @@
mib: MIMOSA-NETWORKS-BFIVE-MIB
modules:
sensors:
state:
data:
-
oid: mimosaSatelliteStrength
value: mimosaSatelliteStrength
num_oid: .1.3.6.1.4.1.43356.2.1.2.2.5.
descr: 'Satellite Strength'
index: '{{ $index }}'
states:
- { value: 1, descr: good, graph: 1, generic: 0 }
- { value: 2, descr: bad, graph: 1, generic: 2 }

View File

@ -0,0 +1,16 @@
mib: CISCO-WAN-OPTIMIZATION-MIB
modules:
sensors:
state:
data:
-
oid: cwoTfoStatsLoadStatus
value: cwoTfoStatsLoadStatus
num_oid: .1.3.6.1.4.1.9.9.762.1.2.1.13.
descr: 'TFO Load Status'
index: '{{ $index }}'
states:
- { value: 1, descr: other, graph: 1, generic: 3 }
- { value: 2, descr: unknown, graph: 1, generic: 0 }
- { value: 3, descr: ok, graph: 1, generic: 1 }
- { value: 4, descr: non-critical, graph: 1, generic: 2 }

View File

@ -1,59 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$tables = array(
array('hh3cdevMFanStatusTable','.1.3.6.1.4.1.25506.8.35.9.1.1.1.2.','hh3cDevMFanStatus') ,
array('hh3cdevMPowerStatusTable','.1.3.6.1.4.1.25506.8.35.9.1.2.1.2.','hh3cDevMPowerStatus')
);
foreach ($tables as $tablevalue) {
$temp = snmpwalk_cache_multi_oid($device, $tablevalue[0], array(), 'HH3C-LswDEVM-MIB');
$cur_oid = $tablevalue[1];
if (is_array($temp)) {
//Create State Index
$state_name = $tablevalue[2];
$state_index_id = create_state_index($state_name);
//Create State Translation
if ($state_index_id !== null) {
$states = array(
array($state_index_id,'active',0,1,0) ,
array($state_index_id,'deactive',0,2,2) ,
array($state_index_id,'not-install',0,3,3) ,
array($state_index_id,'unsupport',0,4,1)
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
foreach ($temp as $index => $entry) {
//Discover Sensors
$descr = 'Fan ' . $index;
if ($entry['hh3cDevMPowerStatus']) {
$descr = 'Power Supply ' . $index;
}
discover_sensor($valid['sensor'], 'state', $device, $cur_oid.$index, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp[$index][$tablevalue[2]], 'snmp', $index);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}
}
}

View File

@ -1,79 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$tables = array(
array('tempTable','.1.3.6.1.4.1.6894.2.2.1.4.','tempStatus') ,
array('fanTable','.1.3.6.1.4.1.6894.2.4.1.4.','fanStatus') ,
array('powerTable','.1.3.6.1.4.1.6894.2.6.1.4.','powerStatus') ,
array('physicalDiskTable','.1.3.6.1.4.1.6894.2.9.1.7.','physDiskState')
);
foreach ($tables as $tablevalue) {
$temp = snmpwalk_cache_multi_oid($device, $tablevalue[0], array(), 'SFA-INFO');
$cur_oid = $tablevalue[1];
if (is_array($temp)) {
//Create State Index
$state_name = $tablevalue[2];
$state_index_id = create_state_index($state_name);
//Create State Translation
if ($state_index_id !== null) {
if ($state_name == 'fanStatus' || $state_name == 'powerStatus') {
$states = array(
array($state_index_id,'healthy',0,1,0) ,
array($state_index_id,'failure',0,2,2)
);
} elseif ($state_name == 'tempStatus') {
$states = array(
array($state_index_id,'normal',0,1,0) ,
array($state_index_id,'warning',0,2,1) ,
array($state_index_id,'critical',0,3,2)
);
} else {
$states = array(
array($state_index_id,'normal',0,1,0) ,
array($state_index_id,'failed',0,2,2) ,
array($state_index_id,'predictedfailure',0,3,1) ,
array($state_index_id,'unknown',0,4,3)
);
}
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
foreach ($temp as $index => $entry) {
//Discover Sensors
$descr = 'Temperature Sensor ' . $index;
if ($entry['fanStatus']) {
$descr = 'Fan Sensor ' . $index;
} elseif ($entry['powerStatus']) {
$descr = 'Power Supply Sensor ' . $index;
} elseif ($entry['physDiskState']) {
$descr = 'Disk Sensor ' . $index;
}
discover_sensor($valid['sensor'], 'state', $device, $cur_oid.$index, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp[$index][$tablevalue[2]], 'snmp', $index);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}
}
}

View File

@ -1,50 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$temp = snmp_get($device, "productStatusGlobalStatus.0", "-Ovqe", "DELL-SNMP-UPS-MIB");
$cur_oid = '.1.3.6.1.4.1.674.10902.2.110.1.0';
$index = '0';
if (is_numeric($temp)) {
//Create State Index
$state_name = 'productStatusGlobalStatus';
$state_index_id = create_state_index($state_name);
//Create State Translation
if ($state_index_id !== null) {
$states = array(
array($state_index_id,'other',0,1,3) ,
array($state_index_id,'unknown',0,2,3) ,
array($state_index_id,'ok',0,3,0) ,
array($state_index_id,'non-critical',0,4,1) ,
array($state_index_id,'critical',0,5,2) ,
array($state_index_id,'non-recoverable',0,6,2)
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
$descr = 'Current Status';
//Discover Sensors
discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp, 'snmp', $index);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}

View File

@ -1,47 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
d_echo('Mimosa');
$temp = snmp_get($device, "mimosaSatelliteStrength.0", "-Ovqe", "MIMOSA-NETWORKS-BFIVE-MIB");
$cur_oid = '.1.3.6.1.4.1.43356.2.1.2.2.5.0';
$index = '0';
if (is_numeric($temp)) {
//Create State Index
$state_name = 'mimosaSatelliteStrength';
$state_index_id = create_state_index($state_name);
//Create State Translation
if ($state_index_id !== null) {
$states = array(
array($state_index_id,'good',0,1,0) ,
array($state_index_id,'bad',0,2,2)
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
$descr = 'Satellite Strength';
//Discover Sensors
discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp, 'snmp', $index);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}

View File

@ -1,11 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/

View File

@ -1,48 +0,0 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$temp = snmp_get($device, "cwoTfoStatsLoadStatus.0", "-Ovqe", "CISCO-WAN-OPTIMIZATION-MIB");
$cur_oid = '.1.3.6.1.4.1.9.9.762.1.2.1.13.0';
$index = '0';
if (is_numeric($temp)) {
//Create State Index
$state_name = 'cwoTfoStatsLoadStatus';
$state_index_id = create_state_index($state_name);
//Create State Translation
if ($state_index_id !== null) {
$states = array(
array($state_index_id,'unknown',0,1,3) ,
array($state_index_id,'green',0,2,0) ,
array($state_index_id,'yellow',0,3,1) ,
array($state_index_id,'red',0,4,2)
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
$descr = 'TFO Load Status';
//Discover Sensors
discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $temp, 'snmp', $index);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}

File diff suppressed because it is too large Load Diff

765
tests/data/dell-ups.json Normal file
View File

@ -0,0 +1,765 @@
{
"applications": {
"discovery": {
"applications": [],
"application_metrics": []
},
"poller": "matches discovery"
},
"arp-table": {
"discovery": {
"ipv4_mac": [
{
"mac_address": "28c0da40e701",
"ipv4_address": "192.168.0.1",
"context_name": null
}
]
},
"poller": "matches discovery"
},
"bgp-peers": {
"discovery": {
"devices": [
{
"bgpLocalAs": null
}
],
"bgpPeers": [],
"bgpPeers_cbgp": []
},
"poller": "matches discovery"
},
"mempools": {
"discovery": {
"mempools": []
},
"poller": "matches discovery"
},
"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": "",
"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": null,
"ifAlias": "",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": "0",
"ifVlan": "",
"ifTrunk": null,
"ifVrf": "0",
"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": "",
"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": null,
"ifAlias": "",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": "0",
"ifVlan": "",
"ifTrunk": null,
"ifVrf": "0",
"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,
"ifVrf": "0",
"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": "5cf9ddffc2bc",
"ifHardType": null,
"ifLastChange": "0",
"ifVlan": "",
"ifTrunk": null,
"ifVrf": "0",
"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
}
]
}
},
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.674.10902.2",
"sysDescr": "Dell UPS Rack 3750W High Efficiency Online HV",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "dell-ups",
"type": "power",
"serial": null,
"icon": "dell.svg"
}
]
},
"poller": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.674.10902.2",
"sysDescr": "Dell UPS Rack 3750W High Efficiency Online HV",
"sysContact": "<private>",
"version": "01.08.0004",
"hardware": "Dell UPS Rack 3750W High Efficiency Online HV",
"features": null,
"location": "<private>",
"os": "dell-ups",
"type": "power",
"serial": "CN-0K804N-75162-2CH-0081-A03",
"icon": "dell.svg"
}
]
}
},
"processors": {
"discovery": {
"processors": []
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": "0",
"sensor_class": "power",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.674.10902.2.120.2.6.0",
"sensor_index": "0",
"sensor_type": "dell-ups",
"sensor_descr": "System Consumption",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "307",
"sensor_limit": "460.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.4.1.674.10902.2.120.5.3.0",
"sensor_index": "0",
"sensor_type": "dell-ups",
"sensor_descr": "Runtime",
"sensor_divisor": "60",
"sensor_multiplier": "1",
"sensor_current": "186.317",
"sensor_limit": "3000",
"sensor_limit_warn": "2000",
"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.4.1.674.10902.2.110.1.0",
"sensor_index": "0",
"sensor_type": "productStatusGlobalStatus",
"sensor_descr": "Current Status",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "3",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "productStatusGlobalStatus"
}
],
"state_indexes": [
{
"state_name": "productStatusGlobalStatus",
"state_descr": "other",
"state_draw_graph": "1",
"state_value": "1",
"state_generic_value": "3"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "unknown",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "3"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "ok",
"state_draw_graph": "1",
"state_value": "3",
"state_generic_value": "0"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "non-critical",
"state_draw_graph": "1",
"state_value": "4",
"state_generic_value": "1"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "critical",
"state_draw_graph": "1",
"state_value": "5",
"state_generic_value": "2"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "non-recoverable",
"state_draw_graph": "1",
"state_value": "6",
"state_generic_value": "2"
}
]
},
"poller": {
"sensors": [
{
"sensor_deleted": "0",
"sensor_class": "power",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.674.10902.2.120.2.6.0",
"sensor_index": "0",
"sensor_type": "dell-ups",
"sensor_descr": "System Consumption",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "307",
"sensor_limit": "460.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.4.1.674.10902.2.120.5.3.0",
"sensor_index": "0",
"sensor_type": "dell-ups",
"sensor_descr": "Runtime",
"sensor_divisor": "60",
"sensor_multiplier": "1",
"sensor_current": "186.317",
"sensor_limit": "3000",
"sensor_limit_warn": "2000",
"sensor_limit_low": "5",
"sensor_limit_low_warn": "10",
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": "186.317",
"user_func": null,
"state_name": null
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.674.10902.2.110.1.0",
"sensor_index": "0",
"sensor_type": "productStatusGlobalStatus",
"sensor_descr": "Current Status",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "3",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "productStatusGlobalStatus"
}
],
"state_indexes": [
{
"state_name": "productStatusGlobalStatus",
"state_descr": "other",
"state_draw_graph": "1",
"state_value": "1",
"state_generic_value": "3"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "unknown",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "3"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "ok",
"state_draw_graph": "1",
"state_value": "3",
"state_generic_value": "0"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "non-critical",
"state_draw_graph": "1",
"state_value": "4",
"state_generic_value": "1"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "critical",
"state_draw_graph": "1",
"state_value": "5",
"state_generic_value": "2"
},
{
"state_name": "productStatusGlobalStatus",
"state_descr": "non-recoverable",
"state_draw_graph": "1",
"state_value": "6",
"state_generic_value": "2"
}
]
}
},
"storage": {
"discovery": {
"storage": []
},
"poller": "matches discovery"
},
"wireless": {
"discovery": {
"wireless_sensors": []
},
"poller": "matches discovery"
}
}

605
tests/data/mimosa.json Normal file
View File

@ -0,0 +1,605 @@
{
"ports": {
"discovery": {
"ports": [
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "eth2",
"ifName": "",
"portName": null,
"ifIndex": "4",
"ifSpeed": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifOperStatus": null,
"ifOperStatus_prev": null,
"ifAdminStatus": null,
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": null,
"ifType": null,
"ifAlias": "",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": "0",
"ifVlan": "",
"ifTrunk": null,
"ifVrf": "0",
"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": "eth2",
"ifName": "eth2",
"portName": null,
"ifIndex": "4",
"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": "eth2",
"ifPhysAddress": "20b5c606dd04",
"ifHardType": null,
"ifLastChange": "0",
"ifVlan": "",
"ifTrunk": null,
"ifVrf": "0",
"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": "1255217",
"ifInUcastPkts_prev": "0",
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": "984690",
"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": "663952495",
"ifInOctets_prev": "0",
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": "267902518",
"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
}
]
}
},
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.43356.1.1.1",
"sysDescr": "Mimosa B5c Firmware v92329ce",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "mimosa",
"type": "wireless",
"serial": null,
"icon": "mimosa.svg"
}
]
},
"poller": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.43356.1.1.1",
"sysDescr": "Mimosa B5c Firmware v92329ce",
"sysContact": "<private>",
"version": "2.3.3",
"hardware": "mimosaB5",
"features": null,
"location": "<private>",
"os": "mimosa",
"type": "wireless",
"serial": "2119632000",
"icon": "mimosa.svg"
}
]
}
},
"processors": {
"discovery": {
"processors": []
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.43356.2.1.2.2.5.0",
"sensor_index": "0",
"sensor_type": "mimosaSatelliteStrength",
"sensor_descr": "Satellite Strength",
"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": "mimosaSatelliteStrength"
},
{
"sensor_deleted": "0",
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.43356.2.1.2.1.8.0",
"sensor_index": "0",
"sensor_type": "mimosaInternalTemp",
"sensor_descr": "Internal Temp",
"sensor_divisor": "10",
"sensor_multiplier": "1",
"sensor_current": "45",
"sensor_limit": "65",
"sensor_limit_warn": null,
"sensor_limit_low": "0",
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": [
{
"state_name": "mimosaSatelliteStrength",
"state_descr": "good",
"state_draw_graph": "1",
"state_value": "1",
"state_generic_value": "0"
},
{
"state_name": "mimosaSatelliteStrength",
"state_descr": "bad",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "2"
}
]
},
"poller": "matches discovery"
},
"storage": {
"discovery": {
"storage": []
},
"poller": "matches discovery"
},
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "mimosa-tx",
"sensor_descr": "Tx Power: MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "24",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "2",
"sensor_type": "mimosa-tx",
"sensor_descr": "Tx Power: MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "16",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.2\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "mimosa-rx",
"sensor_descr": "Min Rx Power: MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "-75",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "2",
"sensor_type": "mimosa-rx",
"sensor_descr": "Min Rx Power: MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "0",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.2\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "mimosa",
"sensor_descr": "MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "5290",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "frequency",
"sensor_index": "2",
"sensor_type": "mimosa",
"sensor_descr": "MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "2437",
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.2\"]"
}
]
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "mimosa-tx",
"sensor_descr": "Tx Power: MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "24",
"sensor_prev": "24",
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "2",
"sensor_type": "mimosa-tx",
"sensor_descr": "Tx Power: MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "16",
"sensor_prev": "16",
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.2\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "mimosa-rx",
"sensor_descr": "Min Rx Power: MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "-75",
"sensor_prev": "-75",
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"sensor_index": "2",
"sensor_type": "mimosa-rx",
"sensor_descr": "Min Rx Power: MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "0",
"sensor_prev": "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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.2\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "mimosa",
"sensor_descr": "MIMOSA-5Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "5290",
"sensor_prev": "5290",
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.1\"]"
},
{
"sensor_deleted": "0",
"sensor_class": "frequency",
"sensor_index": "2",
"sensor_type": "mimosa",
"sensor_descr": "MIMOSA-2Ghz-1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_aggregator": "sum",
"sensor_current": "2437",
"sensor_prev": "2437",
"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_oids": "[\".1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.2\"]"
}
]
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,276 @@
1.3.6.1.2.1.1.1.0|4|Dell UPS Rack 3750W High Efficiency Online HV
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.674.10902.2
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
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|5CF9DDFFC2BC
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.4.3.0|65|443737
1.3.6.1.2.1.4.4.0|65|1
1.3.6.1.2.1.4.5.0|65|764
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|7
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|442897
1.3.6.1.2.1.4.10.0|65|286043
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|26
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
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.192.168.0.14|2|2
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.3.192.168.0.14|64|255.255.255.192
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.22.1.2.2.192.168.0.1|4x|28C0DA40E701
1.3.6.1.2.1.4.28.1.2.1|2|1500
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|2215
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|2215
1.3.6.1.2.1.4.31.1.1.5.1|65|192317110
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|192317496
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|0
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|4
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|15
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|30611553
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|30611744
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|3840
1.3.6.1.2.1.4.31.1.1.30.2|65|4
1.3.6.1.2.1.4.31.1.1.31.1|70|3840
1.3.6.1.2.1.4.31.1.1.31.2|70|4
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|452
1.3.6.1.2.1.4.31.1.1.34.2|65|15
1.3.6.1.2.1.4.31.1.1.35.1|70|452
1.3.6.1.2.1.4.31.1.1.35.2|70|15
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|2236902
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|2236903
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|28725
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|28725
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.34.1.4.2.1.4.192.168.0.1|4x|28C0DA40E701
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|2585
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|85
1.3.6.1.2.1.5.4.0|65|8
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|1
1.3.6.1.2.1.5.8.0|65|2491
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|3663
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|1172
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|2491
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|2585
1.3.6.1.2.1.5.27.1.2.2|65|4
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|3663
1.3.6.1.2.1.5.27.1.4.2|65|7
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|85
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|1
1.3.6.1.2.1.5.28.1.3.1.8|65|2491
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|8
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|3
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|1
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|2491
1.3.6.1.2.1.5.28.1.4.1.3|65|1172
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|4
1.3.6.1.2.1.5.28.1.4.2.132|65|2
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|94
1.3.6.1.2.1.6.6.0|65|429
1.3.6.1.2.1.6.7.0|65|84
1.3.6.1.2.1.6.8.0|65|30
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|13510
1.3.6.1.2.1.6.11.0|65|10995
1.3.6.1.2.1.6.12.0|65|31
1.3.6.1.2.1.6.14.0|65|1
1.3.6.1.2.1.6.15.0|65|8857
1.3.6.1.2.1.6.17.0|70|13510
1.3.6.1.2.1.6.18.0|70|10995
1.3.6.1.2.1.7.1.0|65|258569
1.3.6.1.2.1.7.2.0|65|165029
1.3.6.1.2.1.7.3.0|65|1
1.3.6.1.2.1.7.4.0|65|269624
1.3.6.1.2.1.11.1.0|65|240270
1.3.6.1.2.1.11.2.0|65|240257
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|14
1.3.6.1.2.1.11.5.0|65|20271
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|247043
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|26203
1.3.6.1.2.1.11.16.0|65|214080
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|20271
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|240305
1.3.6.1.2.1.11.29.0|65|14
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|DELL
1.3.6.1.4.1.674.10902.2.100.1.0|4|Dell UPS Rack 3750W High Efficiency Online HV
1.3.6.1.4.1.674.10902.2.100.4.0|4|01.08
1.3.6.1.4.1.674.10902.2.100.5.0|4|0004
1.3.6.1.4.1.674.10902.2.110.1.0|2|3
1.3.6.1.4.1.674.10902.2.120.1.2.0|4|CN-0K804N-75162-2CH-0081-A03
1.3.6.1.4.1.674.10902.2.120.2.6.0|2|307
1.3.6.1.4.1.674.10902.2.120.5.3.0|2|11179
1.3.6.1.6.3.1.1.6.1.0|2|16838
1.3.6.1.6.3.10.2.1.3.0|2|359087

View File

@ -1,2 +1,122 @@
1.3.6.1.2.1.1.1.0|4|Mimosa B5c Firmware v92329ce
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.43356.1.1.1
1.3.6.1.2.1.1.3.0|67|4174583
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.2.4|4|eth2
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.6.4|4x|20B5C606DD04
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.10.4|65|663952495
1.3.6.1.2.1.2.2.1.11.4|65|1255217
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.16.4|65|267902518
1.3.6.1.2.1.2.2.1.17.4|65|984690
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.4.3.0|65|10011411
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|2
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|10011407
1.3.6.1.2.1.4.10.0|65|9724252
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|5
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
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.5.1.0|65|4
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|4
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|0
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|6
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|6
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|0
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.29.1.2.1|65|4
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.1|65|0
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.1|65|6
1.3.6.1.2.1.5.29.1.4.2|65|0
1.3.6.1.2.1.5.29.1.5.1|65|0
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.1.3|65|4
1.3.6.1.2.1.5.30.1.4.1.3|65|6
1.3.6.1.2.1.11.1.0|65|5737
1.3.6.1.2.1.11.2.0|65|5737
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|0
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|35274
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|2810
1.3.6.1.2.1.11.16.0|65|291
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|0
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|5761
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|2
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.4.1.43356.2.1.2.1.2.0|4|2119632000
1.3.6.1.4.1.43356.2.1.2.1.3.0|4|2.3.3
1.3.6.1.4.1.43356.2.1.2.1.8.0|2|450
1.3.6.1.4.1.43356.2.1.2.2.5.0|2|1
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.2.1|4|MIMOSA-5Ghz-1
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.2.2|4|MIMOSA-2Ghz-1
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.1|2|5290
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.7.2|2|2437
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.1|2|24
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.10.2|2|16
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.1|2|-75
1.3.6.1.4.1.43356.2.1.2.9.3.3.1.12.2|2|0