mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
AOS-EMU2: Add contact,relay,outlet discovery; update yaml,snmprec,json (#8317)
* Add contact,relay,outlet discovery; update yaml,snmprec,json * Fix formatting * Another attempt at fixing sensors * Update state mappings and fix json sensor ordering * Capture values numerically. Remove extra if/else statement Make test data more interesting. * Fix whitespace. * Update sensors test data for order_by
This commit is contained in:
@@ -2,9 +2,50 @@ os: aos-emu2
|
||||
text: 'APC Environmental Monitoring Unit'
|
||||
type: environment
|
||||
icon: apc
|
||||
over:
|
||||
- {graph: device_temperature, text: Temperature}
|
||||
- {graph: device_humidity, text: Humidity}
|
||||
mib_dir:
|
||||
- apc
|
||||
discovery:
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.318.1.3.8.2
|
||||
- .1.3.6.1.4.1.318.1.3.8.3
|
||||
discovery_modules:
|
||||
ports: 0
|
||||
ports-stack: 0
|
||||
entity-physical: 0
|
||||
processors: 0
|
||||
mempools: 0
|
||||
cisco-vrf-lite: 0
|
||||
storage: 0
|
||||
hr-device: 0
|
||||
discovery-protocols: 0
|
||||
bgp-peers: 0
|
||||
vlans: 0
|
||||
ucd-diskio: 0
|
||||
services: 0
|
||||
stp: 0
|
||||
ntp: 0
|
||||
wireless: 0
|
||||
fdb-table: 0
|
||||
poller_modules:
|
||||
ipmi: 0
|
||||
entity-physical: 0
|
||||
processors: 0
|
||||
mempools: 0
|
||||
storage: 0
|
||||
netstats: 0
|
||||
hr-mib: 0
|
||||
ucd-mib: 0
|
||||
ipSystemStats: 0
|
||||
ports: 0
|
||||
bgp-peers: 0
|
||||
ospf: 0
|
||||
ucd-diskio: 0
|
||||
services: 0
|
||||
stp: 0
|
||||
ntp: 0
|
||||
wireless: 0
|
||||
fdb-table: 0
|
||||
applications: 0
|
||||
|
114
includes/discovery/sensors/state/aos-emu2.inc.php
Normal file
114
includes/discovery/sensors/state/aos-emu2.inc.php
Normal file
@@ -0,0 +1,114 @@
|
||||
<?php
|
||||
/**
|
||||
* aos-emu2.inc.php
|
||||
*
|
||||
* LibreNMS sensors state discovery module for APC EMU2
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2018 Ben Gibbons
|
||||
* @author Ben Gibbons <axemann@gmail.com>
|
||||
*/
|
||||
|
||||
// Input Contact discovery
|
||||
|
||||
$contacts['emu2_contacts'] = snmpwalk_group($device, 'emsInputContactStatusEntry', 'PowerNet-MIB');
|
||||
|
||||
foreach ($contacts['emu2_contacts'] as $id => $contact) {
|
||||
$index = $contact['emsInputContactStatusInputContactIndex'];
|
||||
$oid = '.1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.' . $index;
|
||||
$descr = $contact['emsInputContactStatusInputContactName'];
|
||||
$currentstate = $contact['emsInputContactStatusInputContactState'];
|
||||
$normalstate = $contact['emsInputContactStatusInputContactNormalState'];
|
||||
if (is_array($contacts['emu2_contacts']) && $normalstate == '1') {
|
||||
$state_name = 'emsInputContactNormalState_NC';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Closed'),
|
||||
array('value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'Open'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
} elseif (is_array($contacts['emu2_contacts']) && $normalstate == '2') {
|
||||
$state_name = 'emsInputContactNormalState_NO';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Closed'),
|
||||
array('value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'Open'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
}
|
||||
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $currentstate, 'snmp', $index);
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
}
|
||||
|
||||
// Output Relay discovery
|
||||
|
||||
$relays['emu2_relays'] = snmpwalk_group($device, 'emsOutputRelayStatusEntry', 'PowerNet-MIB');
|
||||
|
||||
foreach ($relays['emu2_relays'] as $id => $relay) {
|
||||
$index = $relay['emsOutputRelayStatusOutputRelayIndex'];
|
||||
$oid = '.1.3.6.1.4.1.318.1.1.10.3.15.1.1.3.' . $index;
|
||||
$descr = $relay['emsOutputRelayStatusOutputRelayName'];
|
||||
$currentstate = $relay['emsOutputRelayStatusOutputRelayState'];
|
||||
$normalstate = $relay['emsOutputRelayStatusOutputRelayNormalState'];
|
||||
if (is_array($relays['emu2_relays']) && $normalstate == '1') {
|
||||
$state_name = 'emsOutputRelayNormalState_NC';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Closed'),
|
||||
array('value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'Open'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
} elseif (is_array($relays['emu2_relays']) && $normalstate == '2') {
|
||||
$state_name = 'emsOutputRelayNormalState_NO';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Closed'),
|
||||
array('value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'Open'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
}
|
||||
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $currentstate, 'snmp', $index);
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
}
|
||||
|
||||
// Outlet discovery
|
||||
|
||||
$outlets['emu2_outlets'] = snmpwalk_group($device, 'emsOutletStatusEntry', 'PowerNet-MIB');
|
||||
|
||||
foreach ($outlets['emu2_outlets'] as $id => $outlet) {
|
||||
$index = $outlet['emsOutletStatusOutletIndex'];
|
||||
$oid = '.1.3.6.1.4.1.318.1.1.10.3.16.1.1.3.' . $index;
|
||||
$descr = $outlet['emsOutletStatusOutletName'];
|
||||
$currentstate = $outlet['emsOutletStatusOutletState'];
|
||||
$normalstate = $outlet['emsOutletStatusOutletNormalState'];
|
||||
if (is_array($outlets['emu2_outlets']) && $normalstate == '1') {
|
||||
$state_name = 'emsOutletNormalState_ON';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'On'),
|
||||
array('value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'Off'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
} elseif (is_array($outlets['emu2_outlets']) && $normalstate == '2') {
|
||||
$state_name = 'emsOutletNormalState_OFF';
|
||||
$states = array(
|
||||
array('value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'On'),
|
||||
array('value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'Off'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
}
|
||||
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $currentstate, 'snmp', $index);
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
}
|
410
tests/data/aos-emu2_ap9320.json
Executable file → Normal file
410
tests/data/aos-emu2_ap9320.json
Executable file → Normal file
@@ -36,5 +36,415 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"sensors": {
|
||||
"discovery": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "humidity",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.2",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "aos-emu2",
|
||||
"sensor_descr": "Loc Env Probe 2",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "36",
|
||||
"sensor_limit": "99",
|
||||
"sensor_limit_warn": "90",
|
||||
"sensor_limit_low": "0",
|
||||
"sensor_limit_low_warn": "8",
|
||||
"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.318.1.1.10.3.14.1.1.3.8",
|
||||
"sensor_index": "8",
|
||||
"sensor_type": "emsInputContactNormalState_NC",
|
||||
"sensor_descr": "Contact 8",
|
||||
"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": "8",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NC"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "2",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.2",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 2",
|
||||
"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": "2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.3",
|
||||
"sensor_index": "3",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 3",
|
||||
"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": "3",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.4",
|
||||
"sensor_index": "4",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 4",
|
||||
"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": "4",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.5",
|
||||
"sensor_index": "5",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 5",
|
||||
"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": "5",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.6",
|
||||
"sensor_index": "6",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 6",
|
||||
"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": "6",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.7",
|
||||
"sensor_index": "7",
|
||||
"sensor_type": "emsInputContactNormalState_NO",
|
||||
"sensor_descr": "Contact 7",
|
||||
"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": "7",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsInputContactNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.16.1.1.3.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "emsOutletNormalState_OFF",
|
||||
"sensor_descr": "Outlet 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "2",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsOutletNormalState_OFF"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.16.1.1.3.2",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "emsOutletNormalState_OFF",
|
||||
"sensor_descr": "Outlet 2",
|
||||
"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": "2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsOutletNormalState_OFF"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.15.1.1.3.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "emsOutputRelayNormalState_NO",
|
||||
"sensor_descr": "Relay 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "2",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsOutputRelayNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.15.1.1.3.2",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "emsOutputRelayNormalState_NO",
|
||||
"sensor_descr": "Relay 2",
|
||||
"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": "2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "emsOutputRelayNormalState_NO"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.13.1.1.3.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "aos-emu2",
|
||||
"sensor_descr": "Loc Env Probe 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "27.22",
|
||||
"sensor_limit": "60",
|
||||
"sensor_limit_warn": "29.44",
|
||||
"sensor_limit_low": "0",
|
||||
"sensor_limit_low_warn": "0.56",
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.318.1.1.10.3.13.1.1.3.2",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "aos-emu2",
|
||||
"sensor_descr": "Loc Env Probe 2",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "23.89",
|
||||
"sensor_limit": "60",
|
||||
"sensor_limit_warn": "26.67",
|
||||
"sensor_limit_low": "0",
|
||||
"sensor_limit_low_warn": "0.56",
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
{
|
||||
"state_name": "emsInputContactNormalState_NC",
|
||||
"state_descr": "Closed",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "1",
|
||||
"state_generic_value": "0"
|
||||
},
|
||||
{
|
||||
"state_name": "emsInputContactNormalState_NC",
|
||||
"state_descr": "Open",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "2",
|
||||
"state_generic_value": "1"
|
||||
},
|
||||
{
|
||||
"state_name": "emsInputContactNormalState_NO",
|
||||
"state_descr": "Closed",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "1",
|
||||
"state_generic_value": "1"
|
||||
},
|
||||
{
|
||||
"state_name": "emsInputContactNormalState_NO",
|
||||
"state_descr": "Open",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "2",
|
||||
"state_generic_value": "0"
|
||||
},
|
||||
{
|
||||
"state_name": "emsOutletNormalState_OFF",
|
||||
"state_descr": "On",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "1",
|
||||
"state_generic_value": "1"
|
||||
},
|
||||
{
|
||||
"state_name": "emsOutletNormalState_OFF",
|
||||
"state_descr": "Off",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "2",
|
||||
"state_generic_value": "0"
|
||||
},
|
||||
{
|
||||
"state_name": "emsOutputRelayNormalState_NO",
|
||||
"state_descr": "Closed",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "1",
|
||||
"state_generic_value": "1"
|
||||
},
|
||||
{
|
||||
"state_name": "emsOutputRelayNormalState_NO",
|
||||
"state_descr": "Open",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "2",
|
||||
"state_generic_value": "0"
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -25,6 +25,75 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.10",
|
||||
"sensor_index": "10",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan5B",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3720",
|
||||
"sensor_limit": "6696",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.11",
|
||||
"sensor_index": "11",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan6A",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "4560",
|
||||
"sensor_limit": "8208",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.12",
|
||||
"sensor_index": "12",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan6B",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3480",
|
||||
"sensor_limit": "6264",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
@@ -209,106 +278,14 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.10",
|
||||
"sensor_index": "10",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan5B",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3720",
|
||||
"sensor_limit": "6696",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.11",
|
||||
"sensor_index": "11",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan6A",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "4560",
|
||||
"sensor_limit": "8208",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.12",
|
||||
"sensor_index": "12",
|
||||
"sensor_type": "drac",
|
||||
"sensor_descr": "System Fan6B",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3480",
|
||||
"sensor_limit": "6264",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "720",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "virtualDiskState",
|
||||
"sensor_descr": "Virtual Disk 0",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "2",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "virtualDiskState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.1",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.1",
|
||||
"sensor_index": "1.1",
|
||||
"sensor_type": "processorDeviceStatus",
|
||||
"sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "PS1 Current 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -322,16 +299,16 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "processorDeviceStatus"
|
||||
"state_name": "amperageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.2",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "processorDeviceStatus",
|
||||
"sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "PS2 Current 2",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -345,7 +322,99 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "processorDeviceStatus"
|
||||
"state_name": "amperageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.3",
|
||||
"sensor_index": "1.3",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "System Board Pwr Consumption",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.3",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "amperageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.2.2.1.0",
|
||||
"sensor_index": "drsGlobalSystemStatus.0",
|
||||
"sensor_type": "drsGlobalSystemStatus",
|
||||
"sensor_descr": "Global System Status",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "drsGlobalSystemStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.6.1.1",
|
||||
"sensor_index": "intrusionReading.1.1",
|
||||
"sensor_type": "intrusionReading",
|
||||
"sensor_descr": "Intrusion Reading",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "1",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "intrusionReading"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.5.1.1",
|
||||
"sensor_index": "intrusionStatus.1.1",
|
||||
"sensor_type": "intrusionStatus",
|
||||
"sensor_descr": "Intrusion Status",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "intrusionStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
@@ -531,6 +600,167 @@
|
||||
"user_func": null,
|
||||
"state_name": "memoryDeviceStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.1",
|
||||
"sensor_index": "1.1",
|
||||
"sensor_type": "processorDeviceStatus",
|
||||
"sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "processorDeviceStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.1100.30.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "processorDeviceStatus",
|
||||
"sensor_descr": "Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "processorDeviceStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.1",
|
||||
"sensor_index": "1.1",
|
||||
"sensor_type": "systemBatteryStatus",
|
||||
"sensor_descr": "System Board CMOS Battery",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemBatteryStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "systemBatteryStatus",
|
||||
"sensor_descr": "PERC1 ROMB Battery",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemBatteryStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.60.1",
|
||||
"sensor_index": "systemStateIDSDMCardDeviceStatusCombined.1",
|
||||
"sensor_type": "systemStateIDSDMCardDeviceStatusCombined",
|
||||
"sensor_descr": "IDSDM Card Device Combined Status",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemStateIDSDMCardDeviceStatusCombined"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.58.1",
|
||||
"sensor_index": "systemStateIDSDMCardUnitStatusCombined.1",
|
||||
"sensor_type": "systemStateIDSDMCardUnitStatusCombined",
|
||||
"sensor_descr": "IDSDM Card Unit Combined Status",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemStateIDSDMCardUnitStatusCombined"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "virtualDiskState",
|
||||
"sensor_descr": "Virtual Disk 0",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "2",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "virtualDiskState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -554,190 +784,6 @@
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU1 FIVR PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.3",
|
||||
"sensor_index": "1.3",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 VCORE PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.3",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.4",
|
||||
"sensor_index": "1.4",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 FIVR PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.4",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.5",
|
||||
"sensor_index": "1.5",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 3.3V PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.5",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.6",
|
||||
"sensor_index": "1.6",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 1.5V AUX PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.6",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.7",
|
||||
"sensor_index": "1.7",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 5V AUX PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.7",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.8",
|
||||
"sensor_index": "1.8",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 M23 VPP PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.8",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.9",
|
||||
"sensor_index": "1.9",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU1 M23 VPP PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.9",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -968,6 +1014,29 @@
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU1 FIVR PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -1202,56 +1271,10 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.1",
|
||||
"sensor_index": "1.1",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "PS1 Current 1",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.1",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "amperageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "PS2 Current 2",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "amperageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.30.1.5.1.3",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.3",
|
||||
"sensor_index": "1.3",
|
||||
"sensor_type": "amperageProbeStatus",
|
||||
"sensor_descr": "System Board Pwr Consumption",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 VCORE PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1265,16 +1288,16 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "amperageProbeStatus"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.1",
|
||||
"sensor_index": "1.1",
|
||||
"sensor_type": "systemBatteryStatus",
|
||||
"sensor_descr": "System Board CMOS Battery",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.4",
|
||||
"sensor_index": "1.4",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 FIVR PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1284,20 +1307,20 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.1",
|
||||
"entPhysicalIndex": "1.4",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemBatteryStatus"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.2",
|
||||
"sensor_index": "1.2",
|
||||
"sensor_type": "systemBatteryStatus",
|
||||
"sensor_descr": "PERC1 ROMB Battery",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.5",
|
||||
"sensor_index": "1.5",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 3.3V PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1307,20 +1330,20 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1.2",
|
||||
"entPhysicalIndex": "1.5",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemBatteryStatus"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.2.2.1.0",
|
||||
"sensor_index": "drsGlobalSystemStatus.0",
|
||||
"sensor_type": "drsGlobalSystemStatus",
|
||||
"sensor_descr": "Global System Status",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.6",
|
||||
"sensor_index": "1.6",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 1.5V AUX PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1330,20 +1353,20 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex": "1.6",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "drsGlobalSystemStatus"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.58.1",
|
||||
"sensor_index": "systemStateIDSDMCardUnitStatusCombined.1",
|
||||
"sensor_type": "systemStateIDSDMCardUnitStatusCombined",
|
||||
"sensor_descr": "IDSDM Card Unit Combined Status",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.7",
|
||||
"sensor_index": "1.7",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "System Board 5V AUX PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1353,20 +1376,20 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex": "1.7",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemStateIDSDMCardUnitStatusCombined"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.200.10.1.60.1",
|
||||
"sensor_index": "systemStateIDSDMCardDeviceStatusCombined.1",
|
||||
"sensor_type": "systemStateIDSDMCardDeviceStatusCombined",
|
||||
"sensor_descr": "IDSDM Card Device Combined Status",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.8",
|
||||
"sensor_index": "1.8",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU2 M23 VPP PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1376,20 +1399,20 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex": "1.8",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "systemStateIDSDMCardDeviceStatusCombined"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.5.1.1",
|
||||
"sensor_index": "intrusionStatus.1.1",
|
||||
"sensor_type": "intrusionStatus",
|
||||
"sensor_descr": "Intrusion Status",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.9",
|
||||
"sensor_index": "1.9",
|
||||
"sensor_type": "voltageProbeStatus",
|
||||
"sensor_descr": "CPU1 M23 VPP PG",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3",
|
||||
@@ -1399,34 +1422,11 @@
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex": "1.9",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "intrusionStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.674.10892.5.4.300.70.1.6.1.1",
|
||||
"sensor_index": "intrusionReading.1.1",
|
||||
"sensor_type": "intrusionReading",
|
||||
"sensor_descr": "Intrusion Reading",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "1",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "intrusionReading"
|
||||
"state_name": "voltageProbeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
|
@@ -71,75 +71,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.25",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.25",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 25 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.34",
|
||||
"sensor_limit": "-0.323",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.357",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.26",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.26",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 26 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-1.6",
|
||||
"sensor_limit": "-1.52",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-1.68",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.28",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.28",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "The last port - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.62",
|
||||
"sensor_limit": "-0.589",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.651",
|
||||
"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": "dbm",
|
||||
@@ -209,6 +140,75 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.25",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.25",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 25 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.34",
|
||||
"sensor_limit": "-0.323",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.357",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.26",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.26",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 26 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-1.6",
|
||||
"sensor_limit": "-1.52",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-1.68",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.28",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.28",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "The last port - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.62",
|
||||
"sensor_limit": "-0.589",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.651",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
@@ -639,75 +639,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.25",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.25",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 25 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.34",
|
||||
"sensor_limit": "-0.323",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.357",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.26",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.26",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 26 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-1.6",
|
||||
"sensor_limit": "-1.52",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-1.68",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.28",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.28",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "The last port - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.62",
|
||||
"sensor_limit": "-0.589",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.651",
|
||||
"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": "dbm",
|
||||
@@ -777,6 +708,75 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.25",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.25",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 25 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.34",
|
||||
"sensor_limit": "-0.323",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.357",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.26",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.26",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "Port 26 - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-1.6",
|
||||
"sensor_limit": "-1.52",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-1.68",
|
||||
"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": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.259.6.10.120.1.2.11.1.5.28",
|
||||
"sensor_index": "portOpticalMonitoringInfoTxPower.28",
|
||||
"sensor_type": "fusion",
|
||||
"sensor_descr": "The last port - Tx",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-0.62",
|
||||
"sensor_limit": "-0.589",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-0.651",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "fanspeed",
|
||||
@@ -1137,4 +1137,4 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -63,6 +63,29 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.1.0",
|
||||
"sensor_index": "fanSpeedSensorStatus.1.0",
|
||||
"sensor_type": "fanSpeedSensorStatus",
|
||||
"sensor_descr": "CPU Fan, Fanspeed Out Of Range",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "0",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "fanSpeedSensorStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -132,29 +155,6 @@
|
||||
"user_func": null,
|
||||
"state_name": "tempertureSensorStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.2620.1.6.7.8.2.1.6.1.0",
|
||||
"sensor_index": "fanSpeedSensorStatus.1.0",
|
||||
"sensor_type": "fanSpeedSensorStatus",
|
||||
"sensor_descr": "CPU Fan, Fanspeed Out Of Range",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "0",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "fanSpeedSensorStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
|
@@ -43,6 +43,121 @@
|
||||
"user_func": null,
|
||||
"state_name": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.10",
|
||||
"sensor_index": "10",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 10 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.11",
|
||||
"sensor_index": "11",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 11 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.12",
|
||||
"sensor_index": "12",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 12 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.13",
|
||||
"sensor_index": "13",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 13 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.14",
|
||||
"sensor_index": "14",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 14 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -226,121 +341,6 @@
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.10",
|
||||
"sensor_index": "10",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 10 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.11",
|
||||
"sensor_index": "11",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 11 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.12",
|
||||
"sensor_index": "12",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 12 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.13",
|
||||
"sensor_index": "13",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 13 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.46242.5.1.2.14",
|
||||
"sensor_index": "14",
|
||||
"sensor_type": "netonixPoeStatus",
|
||||
"sensor_descr": "Port 14 PoE",
|
||||
"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": "netonixPoeStatus"
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
|
@@ -40,6 +40,75 @@
|
||||
"sensors": {
|
||||
"discovery": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.100.0",
|
||||
"sensor_index": "cooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Free Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.101.0",
|
||||
"sensor_index": "freecooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Compressor Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.102.0",
|
||||
"sensor_index": "total-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Total cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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",
|
||||
@@ -63,6 +132,29 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "eer",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.3.120.0",
|
||||
"sensor_index": "analogObjects.120.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Energy Efficiency Ratio",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "0",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "humidity",
|
||||
@@ -134,64 +226,18 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"sensor_class": "pressure",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.140.0",
|
||||
"sensor_index": "analogObjects.140.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.133.0",
|
||||
"sensor_index": "analogObjects.133.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Ambient",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3.6",
|
||||
"sensor_limit": "23.6",
|
||||
"sensor_descr": "Hydraulic Pressure (Discharge)",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "10",
|
||||
"sensor_current": "370",
|
||||
"sensor_limit": "388.5",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-6.4",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.137.0",
|
||||
"sensor_index": "analogObjects.137.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Out",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "17.9",
|
||||
"sensor_limit": "37.9",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "7.9",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.136.0",
|
||||
"sensor_index": "analogObjects.136.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature In",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "18",
|
||||
"sensor_limit": "38",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "8",
|
||||
"sensor_limit_low": "351.5",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -224,29 +270,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "pressure",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.133.0",
|
||||
"sensor_index": "analogObjects.133.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Hydraulic Pressure (Discharge)",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "10",
|
||||
"sensor_current": "370",
|
||||
"sensor_limit": "388.5",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "351.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": "pressure",
|
||||
@@ -295,87 +318,64 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "cooling",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.100.0",
|
||||
"sensor_index": "cooling-capacity.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.136.0",
|
||||
"sensor_index": "analogObjects.136.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Free Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.101.0",
|
||||
"sensor_index": "freecooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Compressor Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.102.0",
|
||||
"sensor_index": "total-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Total cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "eer",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.3.120.0",
|
||||
"sensor_index": "analogObjects.120.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Energy Efficiency Ratio",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_descr": "Temperature In",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "0",
|
||||
"sensor_limit": null,
|
||||
"sensor_current": "18",
|
||||
"sensor_limit": "38",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low": "8",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.137.0",
|
||||
"sensor_index": "analogObjects.137.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Out",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "17.9",
|
||||
"sensor_limit": "37.9",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "7.9",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.140.0",
|
||||
"sensor_index": "analogObjects.140.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Ambient",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3.6",
|
||||
"sensor_limit": "23.6",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-6.4",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -413,6 +413,75 @@
|
||||
},
|
||||
"poller": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.100.0",
|
||||
"sensor_index": "cooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Free Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.101.0",
|
||||
"sensor_index": "freecooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Compressor Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.102.0",
|
||||
"sensor_index": "total-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Total cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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",
|
||||
@@ -436,6 +505,29 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "eer",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.3.120.0",
|
||||
"sensor_index": "analogObjects.120.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Energy Efficiency Ratio",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "48",
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": "0",
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "humidity",
|
||||
@@ -507,64 +599,18 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"sensor_class": "pressure",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.140.0",
|
||||
"sensor_index": "analogObjects.140.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.133.0",
|
||||
"sensor_index": "analogObjects.133.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Ambient",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3.6",
|
||||
"sensor_limit": "23.6",
|
||||
"sensor_descr": "Hydraulic Pressure (Discharge)",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "10",
|
||||
"sensor_current": "370",
|
||||
"sensor_limit": "388.5",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-6.4",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.137.0",
|
||||
"sensor_index": "analogObjects.137.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Out",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "17.9",
|
||||
"sensor_limit": "37.9",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "7.9",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.136.0",
|
||||
"sensor_index": "analogObjects.136.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature In",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "18",
|
||||
"sensor_limit": "38",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "8",
|
||||
"sensor_limit_low": "351.5",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -597,29 +643,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "pressure",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.133.0",
|
||||
"sensor_index": "analogObjects.133.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Hydraulic Pressure (Discharge)",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "10",
|
||||
"sensor_current": "370",
|
||||
"sensor_limit": "388.5",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "351.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": "pressure",
|
||||
@@ -668,93 +691,70 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "cooling",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.100.0",
|
||||
"sensor_index": "cooling-capacity.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.136.0",
|
||||
"sensor_index": "analogObjects.136.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Free Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.101.0",
|
||||
"sensor_index": "freecooling-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Compressor Cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"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": "cooling",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.102.0",
|
||||
"sensor_index": "total-capacity.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Total cooling Capacity",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "100",
|
||||
"sensor_current": "33900",
|
||||
"sensor_limit": "35595",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "32205",
|
||||
"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": "eer",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.3.120.0",
|
||||
"sensor_index": "analogObjects.120.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Energy Efficiency Ratio",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_descr": "Temperature In",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "48",
|
||||
"sensor_limit": null,
|
||||
"sensor_current": "18",
|
||||
"sensor_limit": "38",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low": "8",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": "0",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.137.0",
|
||||
"sensor_index": "analogObjects.137.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Out",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "17.9",
|
||||
"sensor_limit": "37.9",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "7.9",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.9839.2.1.2.140.0",
|
||||
"sensor_index": "analogObjects.140.0",
|
||||
"sensor_type": "pcoweb-rittalchiller",
|
||||
"sensor_descr": "Temperature Ambient",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "3.6",
|
||||
"sensor_limit": "23.6",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-6.4",
|
||||
"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
|
||||
},
|
||||
@@ -785,4 +785,4 @@
|
||||
"state_indexes": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -20,29 +20,6 @@
|
||||
"sensors": {
|
||||
"discovery": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.25",
|
||||
"sensor_index": "25",
|
||||
"sensor_type": "entity-sensor",
|
||||
"sensor_descr": "Chassis Temperature",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "20",
|
||||
"sensor_limit": "40",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "10",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "25",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "power",
|
||||
@@ -89,29 +66,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1",
|
||||
"sensor_index": "icfTemperatureSensor.1",
|
||||
"sensor_type": "icfTemperatureSensor",
|
||||
"sensor_descr": "Chassis Sensor",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "5",
|
||||
"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": "icfTemperatureSensor"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -296,6 +250,52 @@
|
||||
"user_func": null,
|
||||
"state_name": "hpicfPsState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1",
|
||||
"sensor_index": "icfTemperatureSensor.1",
|
||||
"sensor_type": "icfTemperatureSensor",
|
||||
"sensor_descr": "Chassis Sensor",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "5",
|
||||
"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": "icfTemperatureSensor"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.25",
|
||||
"sensor_index": "25",
|
||||
"sensor_type": "entity-sensor",
|
||||
"sensor_descr": "Chassis Temperature",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "20",
|
||||
"sensor_limit": "40",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "10",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "25",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
|
@@ -2536,16 +2536,16 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.9.25",
|
||||
"sensor_index": "mtxrOpticalTxPower.25",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.10.25",
|
||||
"sensor_index": "mtxrOpticalRxPower.25",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "sfp1 Tx",
|
||||
"sensor_descr": "sfp1 Rx",
|
||||
"sensor_divisor": "1000",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-4.879",
|
||||
"sensor_limit": "-4.63505",
|
||||
"sensor_current": "-5.673",
|
||||
"sensor_limit": "-5.38935",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-5.12295",
|
||||
"sensor_limit_low": "-5.95665",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -2559,16 +2559,16 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.10.25",
|
||||
"sensor_index": "mtxrOpticalRxPower.25",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.9.25",
|
||||
"sensor_index": "mtxrOpticalTxPower.25",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "sfp1 Rx",
|
||||
"sensor_descr": "sfp1 Tx",
|
||||
"sensor_divisor": "1000",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-5.673",
|
||||
"sensor_limit": "-5.38935",
|
||||
"sensor_current": "-4.879",
|
||||
"sensor_limit": "-4.63505",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-5.95665",
|
||||
"sensor_limit_low": "-5.12295",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -2605,13 +2605,13 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.156.92.142.164.164.119.9",
|
||||
"sensor_index": "9",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.244.14.34.43.52.123.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "wlan4 Signal",
|
||||
"sensor_descr": "wlan1 Signal",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-63",
|
||||
"sensor_current": "-82",
|
||||
"sensor_limit": "-30",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-80",
|
||||
@@ -2628,13 +2628,13 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.244.14.34.43.52.123.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.156.92.142.164.164.119.9",
|
||||
"sensor_index": "9",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "wlan1 Signal",
|
||||
"sensor_descr": "wlan4 Signal",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-82",
|
||||
"sensor_current": "-63",
|
||||
"sensor_limit": "-30",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-80",
|
||||
@@ -2693,6 +2693,29 @@
|
||||
"user_func": null,
|
||||
"state_name": "mtxrOpticalTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.10.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Temperature 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "33",
|
||||
"sensor_limit": "70",
|
||||
"sensor_limit_warn": "65",
|
||||
"sensor_limit_low": "-40",
|
||||
"sensor_limit_low_warn": "-35",
|
||||
"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",
|
||||
@@ -2718,19 +2741,19 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.10.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.8.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Temperature 0",
|
||||
"sensor_descr": "Voltage 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "33",
|
||||
"sensor_limit": "70",
|
||||
"sensor_limit_warn": "65",
|
||||
"sensor_limit_low": "-40",
|
||||
"sensor_limit_low_warn": "-35",
|
||||
"sensor_current": "15.4",
|
||||
"sensor_limit": "17.71",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "13.09",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
@@ -2784,29 +2807,6 @@
|
||||
"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.14988.1.1.3.8.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Voltage 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "15.4",
|
||||
"sensor_limit": "17.71",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "13.09",
|
||||
"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": [
|
||||
@@ -2906,16 +2906,16 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.9.25",
|
||||
"sensor_index": "mtxrOpticalTxPower.25",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.10.25",
|
||||
"sensor_index": "mtxrOpticalRxPower.25",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "sfp1 Tx",
|
||||
"sensor_descr": "sfp1 Rx",
|
||||
"sensor_divisor": "1000",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-4.879",
|
||||
"sensor_limit": "-4.63505",
|
||||
"sensor_current": "-5.673",
|
||||
"sensor_limit": "-5.38935",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-5.12295",
|
||||
"sensor_limit_low": "-5.95665",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -2929,16 +2929,16 @@
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.10.25",
|
||||
"sensor_index": "mtxrOpticalRxPower.25",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.9.25",
|
||||
"sensor_index": "mtxrOpticalTxPower.25",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "sfp1 Rx",
|
||||
"sensor_descr": "sfp1 Tx",
|
||||
"sensor_divisor": "1000",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-5.673",
|
||||
"sensor_limit": "-5.38935",
|
||||
"sensor_current": "-4.879",
|
||||
"sensor_limit": "-4.63505",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-5.95665",
|
||||
"sensor_limit_low": "-5.12295",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
@@ -2971,29 +2971,6 @@
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.156.92.142.164.164.119.9",
|
||||
"sensor_index": "9",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "wlan4 Signal",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-77",
|
||||
"sensor_limit": "-30",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-80",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "",
|
||||
"entPhysicalIndex_measured": "",
|
||||
"sensor_prev": "-63",
|
||||
"user_func": "",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "signal",
|
||||
@@ -3017,6 +2994,29 @@
|
||||
"user_func": "",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.2.1.3.156.92.142.164.164.119.9",
|
||||
"sensor_index": "9",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "wlan4 Signal",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "-77",
|
||||
"sensor_limit": "-30",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "-80",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "",
|
||||
"entPhysicalIndex_measured": "",
|
||||
"sensor_prev": "-63",
|
||||
"user_func": "",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@@ -3063,6 +3063,29 @@
|
||||
"user_func": null,
|
||||
"state_name": "mtxrOpticalTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.10.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Temperature 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "33",
|
||||
"sensor_limit": "70",
|
||||
"sensor_limit_warn": "65",
|
||||
"sensor_limit_low": "-40",
|
||||
"sensor_limit_low_warn": "-35",
|
||||
"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",
|
||||
@@ -3088,19 +3111,19 @@
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "temperature",
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.10.0",
|
||||
"sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.8.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Temperature 0",
|
||||
"sensor_descr": "Voltage 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "33",
|
||||
"sensor_limit": "70",
|
||||
"sensor_limit_warn": "65",
|
||||
"sensor_limit_low": "-40",
|
||||
"sensor_limit_low_warn": "-35",
|
||||
"sensor_current": "15.4",
|
||||
"sensor_limit": "17.71",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "13.09",
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": "1",
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
@@ -3154,29 +3177,6 @@
|
||||
"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.14988.1.1.3.8.0",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "routeros",
|
||||
"sensor_descr": "Voltage 0",
|
||||
"sensor_divisor": "10",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "15.4",
|
||||
"sensor_limit": "17.71",
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": "13.09",
|
||||
"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": [
|
||||
|
@@ -38,6 +38,7 @@ sensors:
|
||||
joins:
|
||||
- { left: sensors.sensor_id, right: sensors_to_state_indexes.sensor_id }
|
||||
- { left: sensors_to_state_indexes.state_index_id, right: state_indexes.state_index_id }
|
||||
order_by: sensors.sensor_class, sensors.sensor_type, sensors.sensor_index
|
||||
state_indexes:
|
||||
excluded_fields: [device_id, sensor_id, state_translation_id, state_index_id, state_lastupdated]
|
||||
joins:
|
||||
|
52
tests/snmpsim/aos-emu2_ap9320.snmprec
Executable file → Normal file
52
tests/snmpsim/aos-emu2_ap9320.snmprec
Executable file → Normal file
@@ -1,6 +1,6 @@
|
||||
1.3.6.1.2.1.1.1.0|4|APC Environmental Management System (MB:v3.6.9 PF:v2.6.4 PN:apc_hw02_aos_264.bin AF1:v2.6.7 AN1:apc_hw02_ems_267.bin MN:AP9320 HR:4 SN: ZA0604022112 MD:01/20/2006)
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.318.1.3.8.2
|
||||
1.3.6.1.2.1.1.3.0|67|237891673
|
||||
1.3.6.1.2.1.1.3.0|67|295462512
|
||||
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>
|
||||
@@ -60,7 +60,7 @@
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.5.9|2|33
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.5.10|2|33
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.2|2|33
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.2|2|36
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.3|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.4|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.6.5|2|-1
|
||||
@@ -159,3 +159,51 @@
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.15.8|2|0
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.15.9|2|0
|
||||
1.3.6.1.4.1.318.1.1.10.3.13.1.1.15.10|2|0
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.3|2|3
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.4|2|4
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.5|2|5
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.6|2|6
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.7|2|7
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.1.8|2|8
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.1|4|Contact 1
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.2|4|Contact 2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.3|4|Contact 3
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.4|4|Contact 4
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.5|4|Contact 5
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.6|4|Contact 6
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.7|4|Contact 7
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.2.8|4|Contact 8
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.3|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.4|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.5|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.6|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.7|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.3.8|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.3|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.4|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.5|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.6|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.7|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.14.1.1.4.8|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.1.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.1.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.2.1|4|Relay 1
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.2.2|4|Relay 2
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.3.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.3.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.4.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.15.1.1.4.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.1.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.1.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.2.1|4|Outlet 1
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.2.2|4|Outlet 2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.3.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.3.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.4.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.3.16.1.1.4.2|2|2
|
||||
|
Reference in New Issue
Block a user