From 591384f321a891325eb785f7732179318ef91096 Mon Sep 17 00:00:00 2001 From: Patrik Jonsson Date: Mon, 9 Nov 2020 07:07:45 +0100 Subject: [PATCH] Adding Fortigate HA checks (#12300) * Adding Fortigate HA checks * Fixed issues the linter had * Moving sync checks to the poller since standalone units was marked as unsynchronized * Whitespace lint corrections * More whitespace linting fixes * Removing haState since it only showed the state of one device in the cluster. * Adding a third state fo sync where it will show a warning if a device that is part of a cluster does not have a peer * Updating snmp test data for fortigate 1500d * Changing numerical oids to names * Restoring the original 1500d json file * Adding cleaned test data * Removing tags to see if that makes Travis happier * Removing duplicate rows in SNMP data * Take this Travis! * Pretty please Travis? * Fourth time's a charm? --- .../discovery/sensors/state/fortigate.inc.php | 124 + .../polling/sensors/state/fortigate.inc.php | 57 + tests/data/fortigate_1500d-sensors.json | 6825 +++++++++++++++++ tests/snmpsim/fortigate_1500d-sensors.snmprec | 626 ++ 4 files changed, 7632 insertions(+) create mode 100644 includes/discovery/sensors/state/fortigate.inc.php create mode 100644 includes/polling/sensors/state/fortigate.inc.php create mode 100644 tests/data/fortigate_1500d-sensors.json create mode 100644 tests/snmpsim/fortigate_1500d-sensors.snmprec diff --git a/includes/discovery/sensors/state/fortigate.inc.php b/includes/discovery/sensors/state/fortigate.inc.php new file mode 100644 index 0000000000..f4ee626212 --- /dev/null +++ b/includes/discovery/sensors/state/fortigate.inc.php @@ -0,0 +1,124 @@ +. + * + * @link http://librenms.org + * @copyright 2020 Net Entertainment AB + * @author Patrik Jonsson + */ +$index = 0; +$fgHaSystemModeOid = 'fgHaSystemMode.0'; +$systemMode = snmp_get($device, $fgHaSystemModeOid, '-Ovq', 'FORTINET-FORTIGATE-MIB'); + +// Verify that the device is clustered +if ($systemMode == 'activePassive' || $systemMode == 'activeActive') { + $fgHaStatsEntryOid = 'fgHaStatsEntry'; + + // Fetch the cluster members + $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB'); + + if (is_array($haStatsEntries)) { + $stateName = 'clusterState'; + $descr = 'Cluster State'; + + $states = [ + ['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'CRITICAL'], + ['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'OK'], + ]; + + create_state_index($stateName, $states); + + $clusterMemberCount = count($haStatsEntries); + + // If the device is part of a cluster but the member count is 1 the cluster has issues + $clusterState = $clusterMemberCount == 1 ? 0 : 1; + + discover_sensor( + $valid['sensor'], + 'state', + $device, + $fgHaSystemModeOid, + $index, + $stateName, + $descr, + 1, + 1, + null, + null, + null, + null, + $clusterState, + 'snmp', + null, + null, + null, + 'HA' + ); + + create_sensor_to_state_index($device, $stateName, $index); + + // Setup a sensor for the cluster sync state + $stateName = 'haSyncStatus'; + $descr = 'HA sync status'; + $states = [ + ['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'Out Of Sync'], + ['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'In Sync'], + ['value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'No Peer'], + ]; + + create_state_index($stateName, $states); + + discover_sensor( + $valid['sensor'], + 'state', + $device, + $fgHaStatsEntryOid, + $index, + $stateName, + $descr, + 1, + 1, + null, + null, + null, + null, + 1, + 'snmp', + $index, + null, + null, + 'HA' + ); + + create_sensor_to_state_index($device, $stateName, $index); + } +} + +unset( + $index, + $fgHaSystemModeOid, + $systemMode, + $fgHaStatsEntryOid, + $haStatsEntries, + $stateName, + $descr, + $states, + $clusterMemberCount, + $clusterState, + $entry +); diff --git a/includes/polling/sensors/state/fortigate.inc.php b/includes/polling/sensors/state/fortigate.inc.php new file mode 100644 index 0000000000..0b0a39b373 --- /dev/null +++ b/includes/polling/sensors/state/fortigate.inc.php @@ -0,0 +1,57 @@ +. + * + * @link http://librenms.org + * @copyright 2020 Net Entertainment AB + * @author Patrik Jonsson + */ +if ($device['os'] == 'fortigate') { + if (in_array($sensor['sensor_type'], ['clusterState', 'haSyncStatus'])) { + // Fetch the cluster members and their data + $fgHaStatsEntryOid = 'fgHaStatsEntry'; + $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB'); + + if ($sensor['sensor_type'] == 'clusterState') { + // Determine if the cluster contains more than 1 device + $clusterState = 0; + if (is_array($haStatsEntries)) { + $clusterMemberCount = count($haStatsEntries); + $clusterState = $clusterMemberCount == 1 ? 0 : 1; + } + $sensor_value = $clusterState; + } elseif ($sensor['sensor_type'] == 'haSyncStatus') { + // 0 = Out of sync, 1 = In Sync, 2 = No Peer + $synchronized = 1; + + $clusterMemberCount = count($haStatsEntries); + if ($clusterMemberCount == 1) { + $synchronized = 2; + } else { + foreach ($haStatsEntries as $entry) { + if ($entry['fgHaStatsSyncStatus'] == 'unsynchronized') { + $synchronized = 0; + } + } + } + $sensor_value = $synchronized; + } + + unset($fgHaStatsEntryOid, $haStatsEntries, $clusterMemberCount, $synchronized, $clusterState, $clusterMemberCount); + } +} diff --git a/tests/data/fortigate_1500d-sensors.json b/tests/data/fortigate_1500d-sensors.json new file mode 100644 index 0000000000..e119434b3e --- /dev/null +++ b/tests/data/fortigate_1500d-sensors.json @@ -0,0 +1,6825 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.12356.101.1.15000", + "sysDescr": "our firewall", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "fortigate", + "type": "firewall", + "serial": null, + "icon": "fortinet.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.12356.101.1.15000", + "sysDescr": "our firewall", + "sysContact": "", + "version": null, + "hardware": null, + "features": null, + "os": "fortigate", + "type": "firewall", + "serial": null, + "icon": "fortinet.svg", + "location": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.1.3.0", + "processor_index": "0", + "processor_type": "fortigate-fixed", + "processor_usage": 6, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fortigate", + "mempool_precision": 1, + "mempool_descr": "Main Memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26190, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 203, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 218, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 214, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 212, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": "fgHaSystemMode.0", + "sensor_index": "0", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "clusterState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.1", + "sensor_index": "fgHwSensorEntIndex.1", + "sensor_type": "fgHwSensors", + "sensor_descr": "+3.3V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.10", + "sensor_index": "fgHwSensorEntIndex.10", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.11", + "sensor_index": "fgHwSensorEntIndex.11", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.12", + "sensor_index": "fgHwSensorEntIndex.12", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.13", + "sensor_index": "fgHwSensorEntIndex.13", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.14", + "sensor_index": "fgHwSensorEntIndex.14", + "sensor_type": "fgHwSensors", + "sensor_descr": "MAC_AVS_1V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.15", + "sensor_index": "fgHwSensorEntIndex.15", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VDD", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.16", + "sensor_index": "fgHwSensorEntIndex.16", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VSB", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.17", + "sensor_index": "fgHwSensorEntIndex.17", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D VTT", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.18", + "sensor_index": "fgHwSensorEntIndex.18", + "sensor_type": "fgHwSensors", + "sensor_descr": "DTS CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.19", + "sensor_index": "fgHwSensorEntIndex.19", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.2", + "sensor_index": "fgHwSensorEntIndex.2", + "sensor_type": "fgHwSensors", + "sensor_descr": "+5V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.20", + "sensor_index": "fgHwSensorEntIndex.20", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.21", + "sensor_index": "fgHwSensorEntIndex.21", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.22", + "sensor_index": "fgHwSensorEntIndex.22", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.23", + "sensor_index": "fgHwSensorEntIndex.23", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.24", + "sensor_index": "fgHwSensorEntIndex.24", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.25", + "sensor_index": "fgHwSensorEntIndex.25", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.26", + "sensor_index": "fgHwSensorEntIndex.26", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.27", + "sensor_index": "fgHwSensorEntIndex.27", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.28", + "sensor_index": "fgHwSensorEntIndex.28", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.29", + "sensor_index": "fgHwSensorEntIndex.29", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.3", + "sensor_index": "fgHwSensorEntIndex.3", + "sensor_type": "fgHwSensors", + "sensor_descr": "+12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.30", + "sensor_index": "fgHwSensorEntIndex.30", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.31", + "sensor_index": "fgHwSensorEntIndex.31", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.32", + "sensor_index": "fgHwSensorEntIndex.32", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.33", + "sensor_index": "fgHwSensorEntIndex.33", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.34", + "sensor_index": "fgHwSensorEntIndex.34", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.35", + "sensor_index": "fgHwSensorEntIndex.35", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.36", + "sensor_index": "fgHwSensorEntIndex.36", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.37", + "sensor_index": "fgHwSensorEntIndex.37", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.38", + "sensor_index": "fgHwSensorEntIndex.38", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.39", + "sensor_index": "fgHwSensorEntIndex.39", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.4", + "sensor_index": "fgHwSensorEntIndex.4", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Vcore", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.40", + "sensor_index": "fgHwSensorEntIndex.40", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.41", + "sensor_index": "fgHwSensorEntIndex.41", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Temp", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.42", + "sensor_index": "fgHwSensorEntIndex.42", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.43", + "sensor_index": "fgHwSensorEntIndex.43", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VIN", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.44", + "sensor_index": "fgHwSensorEntIndex.44", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VOUT_12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.45", + "sensor_index": "fgHwSensorEntIndex.45", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.46", + "sensor_index": "fgHwSensorEntIndex.46", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Temp", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.47", + "sensor_index": "fgHwSensorEntIndex.47", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.48", + "sensor_index": "fgHwSensorEntIndex.48", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VIN", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.49", + "sensor_index": "fgHwSensorEntIndex.49", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VOUT_12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.5", + "sensor_index": "fgHwSensorEntIndex.5", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VTT", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.50", + "sensor_index": "fgHwSensorEntIndex.50", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.51", + "sensor_index": "fgHwSensorEntIndex.51", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vsht", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.52", + "sensor_index": "fgHwSensorEntIndex.52", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vbus", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.53", + "sensor_index": "fgHwSensorEntIndex.53", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vsht", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.54", + "sensor_index": "fgHwSensorEntIndex.54", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vbus", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.6", + "sensor_index": "fgHwSensorEntIndex.6", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VSA", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.7", + "sensor_index": "fgHwSensorEntIndex.7", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.8", + "sensor_index": "fgHwSensorEntIndex.8", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.9", + "sensor_index": "fgHwSensorEntIndex.9", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT Vcore", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1", + "sensor_index": "fgVpnTunEntIndex.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.10", + "sensor_index": "fgVpnTunEntIndex.10", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", + "sensor_index": "fgVpnTunEntIndex.11", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", + "sensor_index": "fgVpnTunEntIndex.12", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", + "sensor_index": "fgVpnTunEntIndex.13", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", + "sensor_index": "fgVpnTunEntIndex.14", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.15", + "sensor_index": "fgVpnTunEntIndex.15", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.16", + "sensor_index": "fgVpnTunEntIndex.16", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", + "sensor_index": "fgVpnTunEntIndex.17", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", + "sensor_index": "fgVpnTunEntIndex.18", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", + "sensor_index": "fgVpnTunEntIndex.19", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2", + "sensor_index": "fgVpnTunEntIndex.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.20", + "sensor_index": "fgVpnTunEntIndex.20", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", + "sensor_index": "fgVpnTunEntIndex.21", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", + "sensor_index": "fgVpnTunEntIndex.22", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", + "sensor_index": "fgVpnTunEntIndex.23", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", + "sensor_index": "fgVpnTunEntIndex.24", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", + "sensor_index": "fgVpnTunEntIndex.25", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", + "sensor_index": "fgVpnTunEntIndex.26", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.27", + "sensor_index": "fgVpnTunEntIndex.27", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", + "sensor_index": "fgVpnTunEntIndex.28", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", + "sensor_index": "fgVpnTunEntIndex.29", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3", + "sensor_index": "fgVpnTunEntIndex.3", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", + "sensor_index": "fgVpnTunEntIndex.30", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", + "sensor_index": "fgVpnTunEntIndex.31", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.32", + "sensor_index": "fgVpnTunEntIndex.32", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.33", + "sensor_index": "fgVpnTunEntIndex.33", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.34", + "sensor_index": "fgVpnTunEntIndex.34", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.35", + "sensor_index": "fgVpnTunEntIndex.35", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.36", + "sensor_index": "fgVpnTunEntIndex.36", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.37", + "sensor_index": "fgVpnTunEntIndex.37", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.38", + "sensor_index": "fgVpnTunEntIndex.38", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.39", + "sensor_index": "fgVpnTunEntIndex.39", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4", + "sensor_index": "fgVpnTunEntIndex.4", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", + "sensor_index": "fgVpnTunEntIndex.40", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.41", + "sensor_index": "fgVpnTunEntIndex.41", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.42", + "sensor_index": "fgVpnTunEntIndex.42", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.43", + "sensor_index": "fgVpnTunEntIndex.43", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.44", + "sensor_index": "fgVpnTunEntIndex.44", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.45", + "sensor_index": "fgVpnTunEntIndex.45", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.46", + "sensor_index": "fgVpnTunEntIndex.46", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.47", + "sensor_index": "fgVpnTunEntIndex.47", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.48", + "sensor_index": "fgVpnTunEntIndex.48", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.49", + "sensor_index": "fgVpnTunEntIndex.49", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5", + "sensor_index": "fgVpnTunEntIndex.5", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", + "sensor_index": "fgVpnTunEntIndex.50", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.51", + "sensor_index": "fgVpnTunEntIndex.51", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.52", + "sensor_index": "fgVpnTunEntIndex.52", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", + "sensor_index": "fgVpnTunEntIndex.53", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.54", + "sensor_index": "fgVpnTunEntIndex.54", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.55", + "sensor_index": "fgVpnTunEntIndex.55", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", + "sensor_index": "fgVpnTunEntIndex.56", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", + "sensor_index": "fgVpnTunEntIndex.57", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", + "sensor_index": "fgVpnTunEntIndex.58", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", + "sensor_index": "fgVpnTunEntIndex.59", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.6", + "sensor_index": "fgVpnTunEntIndex.6", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", + "sensor_index": "fgVpnTunEntIndex.60", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", + "sensor_index": "fgVpnTunEntIndex.61", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", + "sensor_index": "fgVpnTunEntIndex.62", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", + "sensor_index": "fgVpnTunEntIndex.63", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", + "sensor_index": "fgVpnTunEntIndex.64", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", + "sensor_index": "fgVpnTunEntIndex.65", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.66", + "sensor_index": "fgVpnTunEntIndex.66", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", + "sensor_index": "fgVpnTunEntIndex.67", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", + "sensor_index": "fgVpnTunEntIndex.68", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.69", + "sensor_index": "fgVpnTunEntIndex.69", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.7", + "sensor_index": "fgVpnTunEntIndex.7", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", + "sensor_index": "fgVpnTunEntIndex.70", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", + "sensor_index": "fgVpnTunEntIndex.71", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.72", + "sensor_index": "fgVpnTunEntIndex.72", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.8", + "sensor_index": "fgVpnTunEntIndex.8", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", + "sensor_index": "fgVpnTunEntIndex.9", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": "fgHaStatsEntry", + "sensor_index": "0", + "sensor_type": "haSyncStatus", + "sensor_descr": "HA sync status", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "haSyncStatus" + } + ], + "state_indexes": [ + { + "state_name": "clusterState", + "state_descr": "CRITICAL", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "clusterState", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "ERROR", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "haSyncStatus", + "state_descr": "Out Of Sync", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "haSyncStatus", + "state_descr": "In Sync", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "haSyncStatus", + "state_descr": "No Peer", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26190, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 203, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 218, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 214, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 212, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": "fgHaSystemMode.0", + "sensor_index": "0", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "clusterState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.1", + "sensor_index": "fgHwSensorEntIndex.1", + "sensor_type": "fgHwSensors", + "sensor_descr": "+3.3V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.10", + "sensor_index": "fgHwSensorEntIndex.10", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.11", + "sensor_index": "fgHwSensorEntIndex.11", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.12", + "sensor_index": "fgHwSensorEntIndex.12", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.13", + "sensor_index": "fgHwSensorEntIndex.13", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.14", + "sensor_index": "fgHwSensorEntIndex.14", + "sensor_type": "fgHwSensors", + "sensor_descr": "MAC_AVS_1V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.15", + "sensor_index": "fgHwSensorEntIndex.15", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VDD", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.16", + "sensor_index": "fgHwSensorEntIndex.16", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VSB", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.17", + "sensor_index": "fgHwSensorEntIndex.17", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D VTT", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.18", + "sensor_index": "fgHwSensorEntIndex.18", + "sensor_type": "fgHwSensors", + "sensor_descr": "DTS CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.19", + "sensor_index": "fgHwSensorEntIndex.19", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.2", + "sensor_index": "fgHwSensorEntIndex.2", + "sensor_type": "fgHwSensors", + "sensor_descr": "+5V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.20", + "sensor_index": "fgHwSensorEntIndex.20", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.21", + "sensor_index": "fgHwSensorEntIndex.21", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.22", + "sensor_index": "fgHwSensorEntIndex.22", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.23", + "sensor_index": "fgHwSensorEntIndex.23", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.24", + "sensor_index": "fgHwSensorEntIndex.24", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.25", + "sensor_index": "fgHwSensorEntIndex.25", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.26", + "sensor_index": "fgHwSensorEntIndex.26", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.27", + "sensor_index": "fgHwSensorEntIndex.27", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.28", + "sensor_index": "fgHwSensorEntIndex.28", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.29", + "sensor_index": "fgHwSensorEntIndex.29", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.3", + "sensor_index": "fgHwSensorEntIndex.3", + "sensor_type": "fgHwSensors", + "sensor_descr": "+12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.30", + "sensor_index": "fgHwSensorEntIndex.30", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.31", + "sensor_index": "fgHwSensorEntIndex.31", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.32", + "sensor_index": "fgHwSensorEntIndex.32", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.33", + "sensor_index": "fgHwSensorEntIndex.33", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.34", + "sensor_index": "fgHwSensorEntIndex.34", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.35", + "sensor_index": "fgHwSensorEntIndex.35", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.36", + "sensor_index": "fgHwSensorEntIndex.36", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.37", + "sensor_index": "fgHwSensorEntIndex.37", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.38", + "sensor_index": "fgHwSensorEntIndex.38", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.39", + "sensor_index": "fgHwSensorEntIndex.39", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.4", + "sensor_index": "fgHwSensorEntIndex.4", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Vcore", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.40", + "sensor_index": "fgHwSensorEntIndex.40", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.41", + "sensor_index": "fgHwSensorEntIndex.41", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Temp", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.42", + "sensor_index": "fgHwSensorEntIndex.42", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.43", + "sensor_index": "fgHwSensorEntIndex.43", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VIN", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.44", + "sensor_index": "fgHwSensorEntIndex.44", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VOUT_12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.45", + "sensor_index": "fgHwSensorEntIndex.45", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.46", + "sensor_index": "fgHwSensorEntIndex.46", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Temp", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.47", + "sensor_index": "fgHwSensorEntIndex.47", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.48", + "sensor_index": "fgHwSensorEntIndex.48", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VIN", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.49", + "sensor_index": "fgHwSensorEntIndex.49", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VOUT_12V", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.5", + "sensor_index": "fgHwSensorEntIndex.5", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VTT", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.50", + "sensor_index": "fgHwSensorEntIndex.50", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.51", + "sensor_index": "fgHwSensorEntIndex.51", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vsht", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.52", + "sensor_index": "fgHwSensorEntIndex.52", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vbus", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.53", + "sensor_index": "fgHwSensorEntIndex.53", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vsht", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.54", + "sensor_index": "fgHwSensorEntIndex.54", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vbus", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.6", + "sensor_index": "fgHwSensorEntIndex.6", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VSA", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.7", + "sensor_index": "fgHwSensorEntIndex.7", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.8", + "sensor_index": "fgHwSensorEntIndex.8", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.9", + "sensor_index": "fgHwSensorEntIndex.9", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT Vcore", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1", + "sensor_index": "fgVpnTunEntIndex.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.10", + "sensor_index": "fgVpnTunEntIndex.10", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", + "sensor_index": "fgVpnTunEntIndex.11", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", + "sensor_index": "fgVpnTunEntIndex.12", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", + "sensor_index": "fgVpnTunEntIndex.13", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", + "sensor_index": "fgVpnTunEntIndex.14", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.15", + "sensor_index": "fgVpnTunEntIndex.15", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.16", + "sensor_index": "fgVpnTunEntIndex.16", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", + "sensor_index": "fgVpnTunEntIndex.17", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", + "sensor_index": "fgVpnTunEntIndex.18", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", + "sensor_index": "fgVpnTunEntIndex.19", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2", + "sensor_index": "fgVpnTunEntIndex.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.20", + "sensor_index": "fgVpnTunEntIndex.20", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", + "sensor_index": "fgVpnTunEntIndex.21", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", + "sensor_index": "fgVpnTunEntIndex.22", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", + "sensor_index": "fgVpnTunEntIndex.23", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", + "sensor_index": "fgVpnTunEntIndex.24", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", + "sensor_index": "fgVpnTunEntIndex.25", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", + "sensor_index": "fgVpnTunEntIndex.26", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.27", + "sensor_index": "fgVpnTunEntIndex.27", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", + "sensor_index": "fgVpnTunEntIndex.28", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", + "sensor_index": "fgVpnTunEntIndex.29", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3", + "sensor_index": "fgVpnTunEntIndex.3", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", + "sensor_index": "fgVpnTunEntIndex.30", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", + "sensor_index": "fgVpnTunEntIndex.31", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.32", + "sensor_index": "fgVpnTunEntIndex.32", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.33", + "sensor_index": "fgVpnTunEntIndex.33", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.34", + "sensor_index": "fgVpnTunEntIndex.34", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.35", + "sensor_index": "fgVpnTunEntIndex.35", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.36", + "sensor_index": "fgVpnTunEntIndex.36", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.37", + "sensor_index": "fgVpnTunEntIndex.37", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.38", + "sensor_index": "fgVpnTunEntIndex.38", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.39", + "sensor_index": "fgVpnTunEntIndex.39", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4", + "sensor_index": "fgVpnTunEntIndex.4", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", + "sensor_index": "fgVpnTunEntIndex.40", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.41", + "sensor_index": "fgVpnTunEntIndex.41", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.42", + "sensor_index": "fgVpnTunEntIndex.42", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.43", + "sensor_index": "fgVpnTunEntIndex.43", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.44", + "sensor_index": "fgVpnTunEntIndex.44", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.45", + "sensor_index": "fgVpnTunEntIndex.45", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.46", + "sensor_index": "fgVpnTunEntIndex.46", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.47", + "sensor_index": "fgVpnTunEntIndex.47", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.48", + "sensor_index": "fgVpnTunEntIndex.48", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.49", + "sensor_index": "fgVpnTunEntIndex.49", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5", + "sensor_index": "fgVpnTunEntIndex.5", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", + "sensor_index": "fgVpnTunEntIndex.50", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.51", + "sensor_index": "fgVpnTunEntIndex.51", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.52", + "sensor_index": "fgVpnTunEntIndex.52", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", + "sensor_index": "fgVpnTunEntIndex.53", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.54", + "sensor_index": "fgVpnTunEntIndex.54", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.55", + "sensor_index": "fgVpnTunEntIndex.55", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", + "sensor_index": "fgVpnTunEntIndex.56", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", + "sensor_index": "fgVpnTunEntIndex.57", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", + "sensor_index": "fgVpnTunEntIndex.58", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", + "sensor_index": "fgVpnTunEntIndex.59", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.6", + "sensor_index": "fgVpnTunEntIndex.6", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", + "sensor_index": "fgVpnTunEntIndex.60", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", + "sensor_index": "fgVpnTunEntIndex.61", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", + "sensor_index": "fgVpnTunEntIndex.62", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", + "sensor_index": "fgVpnTunEntIndex.63", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", + "sensor_index": "fgVpnTunEntIndex.64", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", + "sensor_index": "fgVpnTunEntIndex.65", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.66", + "sensor_index": "fgVpnTunEntIndex.66", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", + "sensor_index": "fgVpnTunEntIndex.67", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", + "sensor_index": "fgVpnTunEntIndex.68", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.69", + "sensor_index": "fgVpnTunEntIndex.69", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.7", + "sensor_index": "fgVpnTunEntIndex.7", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", + "sensor_index": "fgVpnTunEntIndex.70", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", + "sensor_index": "fgVpnTunEntIndex.71", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.72", + "sensor_index": "fgVpnTunEntIndex.72", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.8", + "sensor_index": "fgVpnTunEntIndex.8", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", + "sensor_index": "fgVpnTunEntIndex.9", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": "fgHaStatsEntry", + "sensor_index": "0", + "sensor_type": "haSyncStatus", + "sensor_descr": "HA sync status", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "state_name": "haSyncStatus" + } + ], + "state_indexes": [ + { + "state_name": "clusterState", + "state_descr": "CRITICAL", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "clusterState", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "ERROR", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "haSyncStatus", + "state_descr": "Out Of Sync", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "haSyncStatus", + "state_descr": "In Sync", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "haSyncStatus", + "state_descr": "No Peer", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + } + ] + } + } +} diff --git a/tests/snmpsim/fortigate_1500d-sensors.snmprec b/tests/snmpsim/fortigate_1500d-sensors.snmprec new file mode 100644 index 0000000000..0f7ea39e82 --- /dev/null +++ b/tests/snmpsim/fortigate_1500d-sensors.snmprec @@ -0,0 +1,626 @@ +1.3.6.1.2.1.1.1.0|4|our firewall +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.15000 +1.3.6.1.2.1.1.3.0|67|3885731864 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.47.1.1.1.1.2.1|4|Fortinet FGT_1500D, HW Serial#: FG1K5D3I10000000 +1.3.6.1.2.1.47.1.1.1.1.2.2|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.3|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.4|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.5|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.6|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.7|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.8|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.9|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.10|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.11|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.12|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.13|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.14|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.15|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.16|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.17|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.18|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.19|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.20|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.21|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.22|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.23|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.24|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.25|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.26|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.27|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.28|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.29|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.30|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.31|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.32|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.33|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.34|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.35|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.36|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.37|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.38|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.39|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.40|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.41|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.42|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.43|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.44|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.7.1|4|FGT_1500D +1.3.6.1.2.1.47.1.1.1.1.7.2|4|mgmt1 +1.3.6.1.2.1.47.1.1.1.1.7.3|4|port1 +1.3.6.1.2.1.47.1.1.1.1.7.4|4|modem +1.3.6.1.2.1.47.1.1.1.1.7.5|4|port2 +1.3.6.1.2.1.47.1.1.1.1.7.6|4|port3 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|port4 +1.3.6.1.2.1.47.1.1.1.1.7.8|4|port5 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|port6 +1.3.6.1.2.1.47.1.1.1.1.7.10|4|port7 +1.3.6.1.2.1.47.1.1.1.1.7.11|4|port8 +1.3.6.1.2.1.47.1.1.1.1.7.12|4|port9 +1.3.6.1.2.1.47.1.1.1.1.7.13|4|port10 +1.3.6.1.2.1.47.1.1.1.1.7.14|4|port11 +1.3.6.1.2.1.47.1.1.1.1.7.15|4|port12 +1.3.6.1.2.1.47.1.1.1.1.7.16|4|port13 +1.3.6.1.2.1.47.1.1.1.1.7.17|4|port14 +1.3.6.1.2.1.47.1.1.1.1.7.18|4|port15 +1.3.6.1.2.1.47.1.1.1.1.7.19|4|port16 +1.3.6.1.2.1.47.1.1.1.1.7.20|4|port17 +1.3.6.1.2.1.47.1.1.1.1.7.21|4|port18 +1.3.6.1.2.1.47.1.1.1.1.7.22|4|port19 +1.3.6.1.2.1.47.1.1.1.1.7.23|4|port20 +1.3.6.1.2.1.47.1.1.1.1.7.24|4|port21 +1.3.6.1.2.1.47.1.1.1.1.7.25|4|port22 +1.3.6.1.2.1.47.1.1.1.1.7.26|4|port23 +1.3.6.1.2.1.47.1.1.1.1.7.27|4|port24 +1.3.6.1.2.1.47.1.1.1.1.7.28|4|port25 +1.3.6.1.2.1.47.1.1.1.1.7.29|4|port26 +1.3.6.1.2.1.47.1.1.1.1.7.30|4|port27 +1.3.6.1.2.1.47.1.1.1.1.7.31|4|port28 +1.3.6.1.2.1.47.1.1.1.1.7.32|4|port29 +1.3.6.1.2.1.47.1.1.1.1.7.33|4|port30 +1.3.6.1.2.1.47.1.1.1.1.7.34|4|port31 +1.3.6.1.2.1.47.1.1.1.1.7.35|4|port32 +1.3.6.1.2.1.47.1.1.1.1.7.36|4|port33 +1.3.6.1.2.1.47.1.1.1.1.7.37|4|port34 +1.3.6.1.2.1.47.1.1.1.1.7.38|4|port35 +1.3.6.1.2.1.47.1.1.1.1.7.39|4|port36 +1.3.6.1.2.1.47.1.1.1.1.7.40|4|port37 +1.3.6.1.2.1.47.1.1.1.1.7.41|4|port38 +1.3.6.1.2.1.47.1.1.1.1.7.42|4|port39 +1.3.6.1.2.1.47.1.1.1.1.7.43|4|port40 +1.3.6.1.2.1.47.1.1.1.1.7.44|4|mgmt2 +1.3.6.1.4.1.12356.101.4.1.3.0|66|6 +1.3.6.1.4.1.12356.101.4.1.8.0|66|26190 +1.3.6.1.4.1.12356.101.4.1.11.0|66|203 +1.3.6.1.4.1.12356.101.4.1.12.0|66|218 +1.3.6.1.4.1.12356.101.4.1.13.0|66|214 +1.3.6.1.4.1.12356.101.4.1.14.0|66|212 +1.3.6.1.4.1.12356.101.4.3.1.0|2|54 +1.3.6.1.4.1.12356.101.4.3.2.1.1.1|2|1 +1.3.6.1.4.1.12356.101.4.3.2.1.1.2|2|2 +1.3.6.1.4.1.12356.101.4.3.2.1.1.3|2|3 +1.3.6.1.4.1.12356.101.4.3.2.1.1.4|2|4 +1.3.6.1.4.1.12356.101.4.3.2.1.1.5|2|5 +1.3.6.1.4.1.12356.101.4.3.2.1.1.6|2|6 +1.3.6.1.4.1.12356.101.4.3.2.1.1.7|2|7 +1.3.6.1.4.1.12356.101.4.3.2.1.1.8|2|8 +1.3.6.1.4.1.12356.101.4.3.2.1.1.9|2|9 +1.3.6.1.4.1.12356.101.4.3.2.1.1.10|2|10 +1.3.6.1.4.1.12356.101.4.3.2.1.1.11|2|11 +1.3.6.1.4.1.12356.101.4.3.2.1.1.12|2|12 +1.3.6.1.4.1.12356.101.4.3.2.1.1.13|2|13 +1.3.6.1.4.1.12356.101.4.3.2.1.1.14|2|14 +1.3.6.1.4.1.12356.101.4.3.2.1.1.15|2|15 +1.3.6.1.4.1.12356.101.4.3.2.1.1.16|2|16 +1.3.6.1.4.1.12356.101.4.3.2.1.1.17|2|17 +1.3.6.1.4.1.12356.101.4.3.2.1.1.18|2|18 +1.3.6.1.4.1.12356.101.4.3.2.1.1.19|2|19 +1.3.6.1.4.1.12356.101.4.3.2.1.1.20|2|20 +1.3.6.1.4.1.12356.101.4.3.2.1.1.21|2|21 +1.3.6.1.4.1.12356.101.4.3.2.1.1.22|2|22 +1.3.6.1.4.1.12356.101.4.3.2.1.1.23|2|23 +1.3.6.1.4.1.12356.101.4.3.2.1.1.24|2|24 +1.3.6.1.4.1.12356.101.4.3.2.1.1.25|2|25 +1.3.6.1.4.1.12356.101.4.3.2.1.1.26|2|26 +1.3.6.1.4.1.12356.101.4.3.2.1.1.27|2|27 +1.3.6.1.4.1.12356.101.4.3.2.1.1.28|2|28 +1.3.6.1.4.1.12356.101.4.3.2.1.1.29|2|29 +1.3.6.1.4.1.12356.101.4.3.2.1.1.30|2|30 +1.3.6.1.4.1.12356.101.4.3.2.1.1.31|2|31 +1.3.6.1.4.1.12356.101.4.3.2.1.1.32|2|32 +1.3.6.1.4.1.12356.101.4.3.2.1.1.33|2|33 +1.3.6.1.4.1.12356.101.4.3.2.1.1.34|2|34 +1.3.6.1.4.1.12356.101.4.3.2.1.1.35|2|35 +1.3.6.1.4.1.12356.101.4.3.2.1.1.36|2|36 +1.3.6.1.4.1.12356.101.4.3.2.1.1.37|2|37 +1.3.6.1.4.1.12356.101.4.3.2.1.1.38|2|38 +1.3.6.1.4.1.12356.101.4.3.2.1.1.39|2|39 +1.3.6.1.4.1.12356.101.4.3.2.1.1.40|2|40 +1.3.6.1.4.1.12356.101.4.3.2.1.1.41|2|41 +1.3.6.1.4.1.12356.101.4.3.2.1.1.42|2|42 +1.3.6.1.4.1.12356.101.4.3.2.1.1.43|2|43 +1.3.6.1.4.1.12356.101.4.3.2.1.1.44|2|44 +1.3.6.1.4.1.12356.101.4.3.2.1.1.45|2|45 +1.3.6.1.4.1.12356.101.4.3.2.1.1.46|2|46 +1.3.6.1.4.1.12356.101.4.3.2.1.1.47|2|47 +1.3.6.1.4.1.12356.101.4.3.2.1.1.48|2|48 +1.3.6.1.4.1.12356.101.4.3.2.1.1.49|2|49 +1.3.6.1.4.1.12356.101.4.3.2.1.1.50|2|50 +1.3.6.1.4.1.12356.101.4.3.2.1.1.51|2|51 +1.3.6.1.4.1.12356.101.4.3.2.1.1.52|2|52 +1.3.6.1.4.1.12356.101.4.3.2.1.1.53|2|53 +1.3.6.1.4.1.12356.101.4.3.2.1.1.54|2|54 +1.3.6.1.4.1.12356.101.4.3.2.1.2.1|4|+3.3V +1.3.6.1.4.1.12356.101.4.3.2.1.2.2|4|+5V +1.3.6.1.4.1.12356.101.4.3.2.1.2.3|4|+12V +1.3.6.1.4.1.12356.101.4.3.2.1.2.4|4|CPU Vcore +1.3.6.1.4.1.12356.101.4.3.2.1.2.5|4|CPU VTT +1.3.6.1.4.1.12356.101.4.3.2.1.2.6|4|CPU VSA +1.3.6.1.4.1.12356.101.4.3.2.1.2.7|4|DDR3 VDQ1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.8|4|DDR3 VDQ2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.9|4|NCT Vcore +1.3.6.1.4.1.12356.101.4.3.2.1.2.10|4|NCT VDQ1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.11|4|DDR3 VTT1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.12|4|NCT VDQ2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.13|4|DDR3 VTT2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.14|4|MAC_AVS_1V +1.3.6.1.4.1.12356.101.4.3.2.1.2.15|4|NCT7904D 3VDD +1.3.6.1.4.1.12356.101.4.3.2.1.2.16|4|NCT7904D 3VSB +1.3.6.1.4.1.12356.101.4.3.2.1.2.17|4|NCT7904D VTT +1.3.6.1.4.1.12356.101.4.3.2.1.2.18|4|DTS CPU +1.3.6.1.4.1.12356.101.4.3.2.1.2.19|4|CPU Core 0 +1.3.6.1.4.1.12356.101.4.3.2.1.2.20|4|CPU Core 1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.21|4|CPU Core 2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.22|4|CPU Core 3 +1.3.6.1.4.1.12356.101.4.3.2.1.2.23|4|CPU Core 4 +1.3.6.1.4.1.12356.101.4.3.2.1.2.24|4|CPU Core 5 +1.3.6.1.4.1.12356.101.4.3.2.1.2.25|4|TD1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.26|4|TD2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.27|4|TD3 +1.3.6.1.4.1.12356.101.4.3.2.1.2.28|4|TD4 +1.3.6.1.4.1.12356.101.4.3.2.1.2.29|4|TS1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.30|4|TS2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.31|4|TS3 +1.3.6.1.4.1.12356.101.4.3.2.1.2.32|4|TS4 +1.3.6.1.4.1.12356.101.4.3.2.1.2.33|4|TS5 +1.3.6.1.4.1.12356.101.4.3.2.1.2.34|4|TS6 +1.3.6.1.4.1.12356.101.4.3.2.1.2.35|4|Fan 1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.36|4|Fan 2 +1.3.6.1.4.1.12356.101.4.3.2.1.2.37|4|Fan 3 +1.3.6.1.4.1.12356.101.4.3.2.1.2.38|4|Fan 4 +1.3.6.1.4.1.12356.101.4.3.2.1.2.39|4|Fan 5 +1.3.6.1.4.1.12356.101.4.3.2.1.2.40|4|Fan 6 +1.3.6.1.4.1.12356.101.4.3.2.1.2.41|4|PS1 Temp +1.3.6.1.4.1.12356.101.4.3.2.1.2.42|4|PS1 Fan 1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.43|4|PS1 VIN +1.3.6.1.4.1.12356.101.4.3.2.1.2.44|4|PS1 VOUT_12V +1.3.6.1.4.1.12356.101.4.3.2.1.2.45|4|PS1 Status +1.3.6.1.4.1.12356.101.4.3.2.1.2.46|4|PS2 Temp +1.3.6.1.4.1.12356.101.4.3.2.1.2.47|4|PS2 Fan 1 +1.3.6.1.4.1.12356.101.4.3.2.1.2.48|4|PS2 VIN +1.3.6.1.4.1.12356.101.4.3.2.1.2.49|4|PS2 VOUT_12V +1.3.6.1.4.1.12356.101.4.3.2.1.2.50|4|PS2 Status +1.3.6.1.4.1.12356.101.4.3.2.1.2.51|4|INA219 PS1 Vsht +1.3.6.1.4.1.12356.101.4.3.2.1.2.52|4|INA219 PS1 Vbus +1.3.6.1.4.1.12356.101.4.3.2.1.2.53|4|INA219 PS2 Vsht +1.3.6.1.4.1.12356.101.4.3.2.1.2.54|4|INA219 PS2 Vbus +1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|3.3504 +1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|5.097 +1.3.6.1.4.1.12356.101.4.3.2.1.3.3|4|11.959 +1.3.6.1.4.1.12356.101.4.3.2.1.3.4|4|1.1373 +1.3.6.1.4.1.12356.101.4.3.2.1.3.5|4|1.0589 +1.3.6.1.4.1.12356.101.4.3.2.1.3.6|4|0.8629 +1.3.6.1.4.1.12356.101.4.3.2.1.3.7|4|1.3431 +1.3.6.1.4.1.12356.101.4.3.2.1.3.8|4|1.3431 +1.3.6.1.4.1.12356.101.4.3.2.1.3.9|4|1.136 +1.3.6.1.4.1.12356.101.4.3.2.1.3.10|4|1.344 +1.3.6.1.4.1.12356.101.4.3.2.1.3.11|4|0.664 +1.3.6.1.4.1.12356.101.4.3.2.1.3.12|4|1.344 +1.3.6.1.4.1.12356.101.4.3.2.1.3.13|4|0.664 +1.3.6.1.4.1.12356.101.4.3.2.1.3.14|4|0.968 +1.3.6.1.4.1.12356.101.4.3.2.1.3.15|4|3.264 +1.3.6.1.4.1.12356.101.4.3.2.1.3.16|4|3.264 +1.3.6.1.4.1.12356.101.4.3.2.1.3.17|4|1.056 +1.3.6.1.4.1.12356.101.4.3.2.1.3.18|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.19|4|52 +1.3.6.1.4.1.12356.101.4.3.2.1.3.20|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.21|4|54 +1.3.6.1.4.1.12356.101.4.3.2.1.3.22|4|49 +1.3.6.1.4.1.12356.101.4.3.2.1.3.23|4|50 +1.3.6.1.4.1.12356.101.4.3.2.1.3.24|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.25|4|39 +1.3.6.1.4.1.12356.101.4.3.2.1.3.26|4|28 +1.3.6.1.4.1.12356.101.4.3.2.1.3.27|4|30 +1.3.6.1.4.1.12356.101.4.3.2.1.3.28|4|33 +1.3.6.1.4.1.12356.101.4.3.2.1.3.29|4|36 +1.3.6.1.4.1.12356.101.4.3.2.1.3.30|4|30 +1.3.6.1.4.1.12356.101.4.3.2.1.3.31|4|33 +1.3.6.1.4.1.12356.101.4.3.2.1.3.32|4|34 +1.3.6.1.4.1.12356.101.4.3.2.1.3.33|4|29 +1.3.6.1.4.1.12356.101.4.3.2.1.3.34|4|30 +1.3.6.1.4.1.12356.101.4.3.2.1.3.35|4|3800 +1.3.6.1.4.1.12356.101.4.3.2.1.3.36|4|3200 +1.3.6.1.4.1.12356.101.4.3.2.1.3.37|4|3700 +1.3.6.1.4.1.12356.101.4.3.2.1.3.38|4|3100 +1.3.6.1.4.1.12356.101.4.3.2.1.3.39|4|3900 +1.3.6.1.4.1.12356.101.4.3.2.1.3.40|4|3400 +1.3.6.1.4.1.12356.101.4.3.2.1.3.41|4|26 +1.3.6.1.4.1.12356.101.4.3.2.1.3.42|4|12160 +1.3.6.1.4.1.12356.101.4.3.2.1.3.43|4|226 +1.3.6.1.4.1.12356.101.4.3.2.1.3.44|4|12.032 +1.3.6.1.4.1.12356.101.4.3.2.1.3.45|4|0 +1.3.6.1.4.1.12356.101.4.3.2.1.3.46|4|25 +1.3.6.1.4.1.12356.101.4.3.2.1.3.47|4|12032 +1.3.6.1.4.1.12356.101.4.3.2.1.3.48|4|232 +1.3.6.1.4.1.12356.101.4.3.2.1.3.49|4|11.969 +1.3.6.1.4.1.12356.101.4.3.2.1.3.50|4|0 +1.3.6.1.4.1.12356.101.4.3.2.1.3.51|4|0.00736 +1.3.6.1.4.1.12356.101.4.3.2.1.3.52|4|11.904 +1.3.6.1.4.1.12356.101.4.3.2.1.3.53|4|0.00832 +1.3.6.1.4.1.12356.101.4.3.2.1.3.54|4|11.904 +1.3.6.1.4.1.12356.101.4.3.2.1.4.1|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.2|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.3|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.4|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.5|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.6|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.7|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.8|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.9|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.10|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.11|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.12|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.13|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.14|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.15|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.16|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.17|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.18|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.19|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.20|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.21|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.22|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.23|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.24|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.25|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.26|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.27|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.28|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.29|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.30|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.31|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.32|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.33|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.34|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.35|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.36|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.37|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.38|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.39|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.40|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.41|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.42|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.43|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.44|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.45|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.46|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.47|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.48|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.49|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.50|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.51|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.52|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.53|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.54|2|0 +1.3.6.1.4.1.12356.101.12.1.1.0|2|35 +1.3.6.1.4.1.12356.101.12.2.2.1.2.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.3|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.4|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.5|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.6|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.7|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.8|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.9|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.10|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.11|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.12|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.13|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.14|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.15|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.16|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.17|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.18|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.19|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.20|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.21|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.22|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.23|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.24|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.25|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.26|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.27|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.28|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.29|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.30|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.31|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.32|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.33|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.34|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.35|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.36|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.37|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.38|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.39|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.40|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.41|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.42|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.43|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.44|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.45|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.46|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.47|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.48|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.49|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.50|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.51|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.52|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.53|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.54|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.55|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.56|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.57|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.58|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.59|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.60|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.61|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.62|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.63|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.64|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.65|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.66|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.67|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.68|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.69|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.70|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.71|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.72|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.3|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.4|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.5|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.6|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.7|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.8|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.9|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.10|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.11|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.12|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.13|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.14|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.15|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.16|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.17|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.18|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.19|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.20|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.21|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.22|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.23|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.24|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.25|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.26|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.27|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.28|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.29|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.30|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.31|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.32|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.33|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.34|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.35|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.36|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.37|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.38|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.39|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.40|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.41|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.42|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.43|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.44|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.45|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.46|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.47|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.48|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.49|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.50|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.51|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.52|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.53|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.54|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.55|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.56|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.57|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.58|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.59|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.60|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.61|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.62|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.63|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.64|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.65|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.66|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.67|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.68|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.69|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.70|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.71|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.72|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.4.1|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.2|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.3|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.4|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.5|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.6|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.7|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.8|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.9|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.10|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.11|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.12|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.13|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.14|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.15|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.16|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.17|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.18|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.19|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.20|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.21|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.22|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.23|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.24|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.25|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.26|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.27|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.28|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.29|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.30|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.31|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.32|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.33|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.34|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.35|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.36|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.37|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.38|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.39|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.40|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.41|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.42|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.43|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.44|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.45|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.46|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.47|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.48|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.49|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.50|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.51|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.52|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.53|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.54|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.55|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.56|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.57|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.58|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.59|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.60|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.61|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.62|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.63|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.64|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.65|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.66|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.67|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.68|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.69|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.70|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.71|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.72|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.2|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.3|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.4|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.5|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.6|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.7|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.8|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.9|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.10|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.11|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.12|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.13|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.14|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.15|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.16|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.17|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.18|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.19|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.20|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.21|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.22|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.23|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.24|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.25|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.26|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.27|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.28|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.29|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.30|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.31|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.32|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.33|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.34|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.35|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.36|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.37|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.38|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.39|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.40|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.41|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.42|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.43|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.44|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.45|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.46|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.47|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.48|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.49|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.50|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.51|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.52|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.53|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.54|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.55|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.56|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.57|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.58|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.59|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.60|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.61|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.62|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.63|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.64|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.65|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.66|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.67|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.68|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.69|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.70|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.71|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.72|2|2 +1.3.6.1.4.1.12356.101.12.2.3.1.1.1|2|2 +1.3.6.1.4.1.12356.101.12.2.3.1.2.1|66|16 +1.3.6.1.4.1.12356.101.12.2.3.1.6.1|66|11 +1.3.6.1.4.1.12356.101.13.1.1.0|2|3 +1.3.6.1.4.1.12356.101.13.2.1.1.1.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.2.1|4|FG1K5D3I10000000 +1.3.6.1.4.1.12356.101.13.2.1.1.3.1|66|7 +1.3.6.1.4.1.12356.101.13.2.1.1.4.1|66|75 +1.3.6.1.4.1.12356.101.13.2.1.1.5.1|66|100550 +1.3.6.1.4.1.12356.101.13.2.1.1.6.1|66|26190 +1.3.6.1.4.1.12356.101.13.2.1.1.7.1|65|1587877738 +1.3.6.1.4.1.12356.101.13.2.1.1.8.1|65|347750579 +1.3.6.1.4.1.12356.101.13.2.1.1.9.1|65|7664 +1.3.6.1.4.1.12356.101.13.2.1.1.10.1|65|102 +1.3.6.1.4.1.12356.101.13.2.1.1.11.1|4|sto-fw-01 +1.3.6.1.4.1.12356.101.13.2.1.1.12.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.13.1|4| +1.3.6.1.4.1.12356.101.13.2.1.1.14.1|4| +1.3.6.1.4.1.12356.101.13.2.1.1.15.1|4|5CD13AE32CBFE763F110CC4C3ED116DF +1.3.6.1.4.1.12356.101.13.2.1.1.16.1|4|FG1K5D3I10000000 +1.3.6.1.6.3.10.2.1.3.0|2|38855745