Additional data collection for GAIA (#12713)

* Added support for GAIA logserver/firewall lograte, raid state and type, logserver state and testdata, firewall packet stats and connections stats

* Fixed typo

* Added testdata

* Fixed typo

* Changed some faulty strings to integers

* Added more sensors. License, HA states and Updates checks

* Added testdata

* Using snmp_get_multi. Cleaner code

* Fix rrd function usage

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
martinberg
2021-04-28 12:19:17 +02:00
committed by GitHub
parent ea75435990
commit 33c7151763
11 changed files with 3906 additions and 0 deletions

83
LibreNMS/OS/Gaia.php Normal file
View File

@@ -0,0 +1,83 @@
<?php
namespace LibreNMS\OS;
use LibreNMS\Interfaces\Polling\OSPolling;
use LibreNMS\RRD\RrdDefinition;
class Gaia extends \LibreNMS\OS implements OSPolling
{
public function pollOS()
{
$oids = ['fwLoggingHandlingRate.0', 'mgLSLogReceiveRate.0', 'fwNumConn.0', 'fwAccepted.0', 'fwRejected.0', 'fwDropped.0', 'fwLogged.0'];
$data = snmp_get_multi($this->getDeviceArray(), $oids, '-OQUs', 'CHECKPOINT-MIB');
//#############
// Create firewall lograte/handlingrate rrd
//#############
if (is_numeric($data[0]['fwLoggingHandlingRate'])) {
$rrd_def = RrdDefinition::make()->addDataset('fwlograte', 'GAUGE', 0);
$fields = [
'fwlograte' => $data[0]['fwLoggingHandlingRate'],
];
$tags = compact('rrd_def');
data_update($this->getDeviceArray(), 'gaia_firewall_lograte', $tags, $fields);
$this->enableGraph('gaia_firewall_lograte');
}
//#############
// Create MGMT logserver lograte rrd
//#############
if (is_numeric($data[0]['mgLSLogReceiveRate'])) {
$rrd_def = RrdDefinition::make()->addDataset('LogReceiveRate', 'GAUGE', 0);
$fields = [
'LogReceiveRate' => $data[0]['mgLSLogReceiveRate'],
];
$tags = compact('rrd_def');
data_update($this->getDeviceArray(), 'gaia_logserver_lograte', $tags, $fields);
$this->enableGraph('gaia_logserver_lograte');
}
//#############
// Create firewall active connections rrd
//#############
if (is_numeric($data[0]['fwNumConn'])) {
$rrd_def = RrdDefinition::make()->addDataset('NumConn', 'GAUGE', 0);
$fields = [
'NumConn' => $data[0]['fwNumConn'],
];
$tags = compact('rrd_def');
data_update($this->getDeviceArray(), 'gaia_connections', $tags, $fields);
$this->enableGraph('gaia_connections');
}
//#############
// Create firewall packets rrd
//#############
if (is_numeric($data[0]['fwAccepted']) && is_numeric($data[0]['fwRejected']) && is_numeric($data[0]['fwDropped']) && is_numeric($data[0]['fwLogged'])) {
$rrd_def = RrdDefinition::make()
->addDataset('accepted', 'DERIVE', 0)
->addDataset('rejected', 'DERIVE', 0)
->addDataset('dropped', 'DERIVE', 0)
->addDataset('logged', 'DERIVE', 0);
$fields = [
'accepted' => $data[0]['fwAccepted'],
'rejected' => $data[0]['fwRejected'],
'dropped' => $data[0]['fwDropped'],
'logged' => $data[0]['fwLogged'],
];
$tags = compact('rrd_def');
data_update($this->getDeviceArray(), 'gaia_firewall_packets', $tags, $fields);
$this->enableGraph('gaia_firewall_packets');
}
}
}

View File

@@ -12,6 +12,7 @@ modules:
- tempertureSensorName
- fanSpeedSensorName
- voltageSensorName
- fwLSConnName
state:
data:
-
@@ -77,6 +78,207 @@ modules:
- { value: 0, descr: Up , graph: 2, generic: 0 }
- { value: 1, descr: Attention, graph: 1, generic: 3 }
- { value: 2, descr: Down, graph: 0, generic: 1 }
-
oid: raidVolumeState
num_oid: '.1.3.6.1.4.1.2620.1.6.7.7.1.1.6.{{ $index }}'
index: 'raidVolumeState.{{ $index }}'
descr: 'RAID Status'
group: RAID
value: raidVolumeState
states:
- { value: 0, descr: OPTIMAL, graph: 3, generic: 0 }
- { value: 1, descr: DEGRADED, graph: 2, generic: 1 }
- { value: 2, descr: FAILED, graph: 1, generic: 2}
- { value: -1, descr: 'Unknown', graph: 0, generic: 3}
-
oid: raidVolumeType
num_oid: '.1.3.6.1.4.1.2620.1.6.7.7.1.1.3.{{ $index }}'
index: 'raidVolumeType.{{ $index }}'
descr: 'RAID Type'
group: RAID
value: raidVolumeType
states:
- { value: 0, descr: 'RAID-0', graph: 8, generic: 0 }
- { value: 1, descr: 'RAID-1E', graph: 7, generic: 0 }
- { value: 2, descr: 'RAID-1', graph: 6, generic: 0 }
- { value: 3, descr: 'RAID-10', graph: 5, generic: 0 }
- { value: 4, descr: 'RAID-4', graph: 4, generic: 0 }
- { value: 5, descr: 'RAID-5', graph: 3, generic: 0 }
- { value: 6, descr: 'RAID-6', graph: 2, generic: 0 }
- { value: 7, descr: 'RAID-60', graph: 1, generic: 0 }
- { value: 8, descr: 'RAID-50', graph: 0, generic: 0 }
-
oid: fwLSConnOverall
num_oid: '.1.3.6.1.4.1.2620.1.1.30.1.{{ $index }}'
index: 'fwLSConnOverall.{{ $index }}'
descr: 'Log Server Connectivity'
group: Logging
value: fwLSConnOverall
states:
- {value: 0, descr: 'Ok', graph: 2, generic: 0}
- {value: 1, descr: 'Warning', graph: 1, generic: 1}
- {value: 2, descr: 'Error', graph: 0, generic: 2}
-
oid: fwLSConnState
num_oid: '.1.3.6.1.4.1.2620.1.1.30.3.1.3.{{ $index }}'
index: 'fwLSConnState.{{ $index }}'
descr: '{{ $fwLSConnName }}, Log Server Connectivity'
group: Logging
value: fwLSConnState
states:
- {value: 0, descr: 'Ok', graph: 2, generic: 0}
- {value: 1, descr: 'Error', graph: 1, generic: 2}
- {value: 2, descr: 'Not Active', graph: 0, generic: 2}
-
oid: fwLocalLoggingStat
num_oid: '.1.3.6.1.4.1.2620.1.1.30.5.{{ $index }}'
index: 'fwLocalLoggingStat.{{ $index }}'
descr: 'Local Log Server Status'
group: Logging
value: fwLocalLoggingStat
states:
- {value: 0, descr: 'To log servers', graph: 3, generic: 0}
- {value: 1, descr: 'Local configured', graph: 2, generic: 0}
- {value: 2, descr: 'Local due to connectivity', graph: 1, generic: 2}
- {value: 3, descr: 'Local due to high rate', graph: 0, generic: 2}
-
oid: mgStatCode
num_oid: '.1.3.6.1.4.1.2620.1.7.101.{{ $index }}'
index: 'mgStatCode.{{ $index }}'
descr: 'Management Sync Status'
group: HA
states:
- { value: 0, descr: 'OK', graph: 0, generic: 0 }
- { value: 1, descr: 'Attention', graph: 1, generic: 1 }
- { value: 2, descr: 'Problem', graph: 2, generic: 2}
-
oid: mgActiveStatus
num_oid: '.1.3.6.1.4.1.2620.1.7.5.{{ $index }}'
index: 'mgActiveStatus.{{ $index }}'
descr: 'SMS Status'
group: HA
states:
- { value: 1, generic: 0, graph: 1, descr: 'active' }
- { value: 2, generic: 0, graph: 1, descr: 'standby' }
-
oid: mgFwmIsAlive
num_oid: '.1.3.6.1.4.1.2620.1.7.6.{{ $index }}'
index: 'mgFwmIsAlive.{{ $index }}'
descr: 'FWM Daemon Status'
group: HA
states:
- { value: 0, generic: 1, graph: 1, descr: 'down' }
- { value: 1, generic: 0, graph: 1, descr: 'up' }
#Update Status
-
oid: advancedUrlFilteringUpdateStatus
num_oid: '.1.3.6.1.4.1.2620.1.43.2.1.{{ $index }}'
index: 'advancedUrlFilteringUpdateStatus.{{ $index }}'
descr: 'URL Filtering Update'
group: Update
states:
- { value: 0, generic: 2, graph: 1, descr: 'failed' }
- { value: 1, generic: 0, graph: 1, descr: 'up-to-date' }
- { value: 2, generic: 0, graph: 1, descr: 'new' }
- { value: 3, generic: 1, graph: 1, descr: 'degrade' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: applicationControlUpdateStatus
num_oid: '.1.3.6.1.4.1.2620.1.39.2.1.{{ $index }}'
index: 'applicationControlUpdateStatus.{{ $index }}'
descr: 'Application Control Update'
group: Update
states:
- { value: 0, generic: 2, graph: 1, descr: 'failed' }
- { value: 1, generic: 0, graph: 1, descr: 'up-to-date' }
- { value: 2, generic: 0, graph: 1, descr: 'new' }
- { value: 3, generic: 1, graph: 1, descr: 'degrade' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: amwAVUpdateStatus
num_oid: '.1.3.6.1.4.1.2620.1.46.5.1.{{ $index }}'
index: 'amwAVUpdateStatus.{{ $index }}'
descr: 'Anti Virus Update'
group: Update
states:
- { value: 0, generic: 2, graph: 1, descr: 'failed' }
- { value: 1, generic: 0, graph: 1, descr: 'up-to-date' }
- { value: 2, generic: 0, graph: 1, descr: 'new' }
- { value: 3, generic: 1, graph: 1, descr: 'degrade' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: amwABUpdateStatus
num_oid: '.1.3.6.1.4.1.2620.1.46.1.1.{{ $index }}'
index: 'amwABUpdateStatus.{{ $index }}'
descr: 'Anti Malware Update'
group: Update
states:
- { value: 0, generic: 2, graph: 1, descr: 'failed' }
- { value: 1, generic: 0, graph: 1, descr: 'up-to-date' }
- { value: 2, generic: 0, graph: 1, descr: 'new' }
- { value: 3, generic: 1, graph: 1, descr: 'degrade' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
#Subscriptions
-
oid: advancedUrlFilteringSubscriptionStatus
num_oid: '.1.3.6.1.4.1.2620.1.43.1.1.{{ $index }}'
index: 'advancedUrlFilteringSubscriptionStatus.{{ $index }}'
descr: 'URL Filtering Subscription'
group: Licenses
states:
- { value: 0, generic: 0, graph: 1, descr: 'valid' }
- { value: 1, generic: 2, graph: 1, descr: 'expired' }
- { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' }
- { value: 3, generic: 0, graph: 1, descr: 'not-associated' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: applicationControlSubscriptionStatus
num_oid: '.1.3.6.1.4.1.2620.1.39.1.1.{{ $index }}'
index: 'applicationControlSubscriptionStatus.{{ $index }}'
descr: 'Application Control Subscription'
group: Licenses
states:
- { value: 0, generic: 0, graph: 1, descr: 'valid' }
- { value: 1, generic: 2, graph: 1, descr: 'expired' }
- { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' }
- { value: 3, generic: 0, graph: 1, descr: 'not-associated' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: antiVirusSubscriptionStatus
num_oid: '.1.3.6.1.4.1.2620.1.46.3.1.{{ $index }}'
index: 'antiVirusSubscriptionStatus.{{ $index }}'
descr: 'Anti Virus Subscription'
group: Licenses
states:
- { value: 0, generic: 0, graph: 1, descr: 'valid' }
- { value: 1, generic: 2, graph: 1, descr: 'expired' }
- { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' }
- { value: 3, generic: 0, graph: 1, descr: 'not-associated' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: antiBotSubscriptionStatus
num_oid: '.1.3.6.1.4.1.2620.1.46.2.1.{{ $index }}'
index: 'antiBotSubscriptionStatus.{{ $index }}'
descr: 'Anti Bot Subscription'
group: Licenses
states:
- { value: 0, generic: 0, graph: 1, descr: 'valid' }
- { value: 1, generic: 2, graph: 1, descr: 'expired' }
- { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' }
- { value: 3, generic: 0, graph: 1, descr: 'not-associated' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
-
oid: antiSpamSubscriptionStatus
num_oid: '.1.3.6.1.4.1.2620.1.46.4.1.{{ $index }}'
index: 'antiSpamSubscriptionStatus.{{ $index }}'
descr: 'Anti Spam Subscription'
group: Licenses
states:
- { value: 0, generic: 0, graph: 1, descr: 'valid' }
- { value: 1, generic: 2, graph: 1, descr: 'expired' }
- { value: 2, generic: 1, graph: 1, descr: 'about-to-expire' }
- { value: 3, generic: 0, graph: 1, descr: 'not-associated' }
- { value: 4, generic: 3, graph: 1, descr: 'unknown' }
temperature:
data:
-

View File

@@ -0,0 +1,13 @@
<?php
require 'includes/html/graphs/common.inc.php';
$rrd_filename = Rrd::name($device['hostname'], 'gaia_connections');
$rrd_options .= " --vertical-label='Connections'";
$rrd_options .= " DEF:connections=$rrd_filename:NumConn:LAST";
$rrd_options .= " LINE1.5:connections#cc0000:'" . Rrd::safeDescr('Active connections') . "'";
$rrd_options .= " 'GPRINT:connections:LAST:Current\:%4.0lf'";
$rrd_options .= " 'GPRINT:connections:AVERAGE:Average\:%4.0lf'";
$rrd_options .= " 'GPRINT:connections:MAX:Max\:%4.0lf\l'";

View File

@@ -0,0 +1,13 @@
<?php
require 'includes/html/graphs/common.inc.php';
$rrd_filename = Rrd::name($device['hostname'], 'gaia_firewall_lograte');
$rrd_options .= " --vertical-label='Logs per second'";
$rrd_options .= " DEF:fw_lograte=$rrd_filename:fwlograte:LAST";
$rrd_options .= " LINE1.5:fw_lograte#cc0000:'" . Rrd::safeDescr('Log Rate') . "'";
$rrd_options .= " 'GPRINT:fw_lograte:LAST:Current\:%4.0lf'";
$rrd_options .= " 'GPRINT:fw_lograte:AVERAGE:Average\:%4.0lf'";
$rrd_options .= " 'GPRINT:fw_lograte:MAX:Max\:%4.0lf\l'";

View File

@@ -0,0 +1,49 @@
<?php
require 'includes/html/graphs/common.inc.php';
$rrd_filename = Rrd::name($device['hostname'], 'gaia_firewall_packets');
$rrd_options .= " --vertical-label='Packets per second'";
$rrd_options .= " --lower-limit='0'";
$stats = [
'accepted' => '#74C366FF',
'rejected' => '#007283FF',
'dropped' => '#FFAB00FF',
'logged' => '#B1441EFF',
];
$i = 0;
foreach ($stats as $stat => $color) {
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['descr'] = ucfirst($stat);
$rrd_list[$i]['ds'] = $stat;
// Set up DEFs
$rrd_options .= ' DEF:' . $stat . '=' . $rrd_filename . ':' . $stat . ':AVERAGE ';
// Set up area graphing with stacking
if ($i == '0') {
$rrd_options .= " 'AREA:" . $stat . $color . ':' . $stat . "'";
} else {
$rrd_options .= " 'AREA:" . $stat . $color . ':' . $stat . ":STACK'";
}
// Set up legend, with consistent indent
$filler = 15 - strlen($stat);
$current_pad = str_pad('', $filler, ' ', STR_PAD_LEFT);
$rrd_options .= " 'GPRINT:" . $stat . ':LAST: ' . $current_pad . "Current\:%8.0lf'";
$rrd_options .= " 'GPRINT:" . $stat . ":AVERAGE:Average\:%8.0lf'";
$rrd_options .= " 'GPRINT:" . $stat . ":MAX:Maximum\:%8.0lf\\n'";
$i++;
}
// Add total value
$rrd_options .= " 'CDEF:total=accepted,rejected,dropped,logged,+,+,+'";
$rrd_options .= " 'LINE1:total#000000FF:Total'";
$filler = 16 - strlen('Total');
$current_pad = str_pad('', $filler, ' ', STR_PAD_LEFT);
$rrd_options .= " 'GPRINT:total:LAST:" . $current_pad . "Current\:%8.0lf'";
$rrd_options .= " 'GPRINT:total:AVERAGE:Average\:%8.0lf'";
$rrd_options .= " 'GPRINT:total:MAX:Maximum\:%8.0lf\\n'";

View File

@@ -0,0 +1,13 @@
<?php
require 'includes/html/graphs/common.inc.php';
$rrd_filename = Rrd::name($device['hostname'], 'gaia_logserver_lograte');
$rrd_options .= " --vertical-label='Logs per second'";
$rrd_options .= " DEF:lograte=$rrd_filename:LogReceiveRate:LAST";
$rrd_options .= " LINE1.5:lograte#cc0000:'" . Rrd::safeDescr('Log Rate') . "'";
$rrd_options .= " 'GPRINT:lograte:LAST:Current\:%4.0lf'";
$rrd_options .= " 'GPRINT:lograte:AVERAGE:Average\:%4.0lf'";
$rrd_options .= " 'GPRINT:lograte:MAX:Max\:%4.0lf\l'";

View File

@@ -2342,6 +2342,38 @@
},
"type": "graph"
},
"graph_types.device.gaia_logserver_lograte": {
"default": {
"section": "firewall",
"order": 0,
"descr": "Log Rate"
},
"type": "graph"
},
"graph_types.device.gaia_firewall_lograte": {
"default": {
"section": "firewall",
"order": 0,
"descr": "Log Rate"
},
"type": "graph"
},
"graph_types.device.gaia_connections": {
"default": {
"section": "firewall",
"order": 0,
"descr": "Active Connections"
},
"type": "graph"
},
"graph_types.device.gaia_firewall_packets": {
"default": {
"section": "firewall",
"order": 0,
"descr": "Firewall Packets"
},
"type": "graph"
},
"graph_types.device.hr_processes": {
"default": {
"section": "system",

805
tests/data/gaia_23900.json Normal file
View File

@@ -0,0 +1,805 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.8072.3.2.10",
"sysDescr": "Linux vsx123 2.6.18-92cpx86_64 #1 SMP Tue Sep 8 20:04:48 IDT 2020 x86_64",
"sysContact": "<private>",
"version": "R80.30",
"hardware": "Check Point 23900",
"features": null,
"os": "gaia",
"type": "firewall",
"serial": "LR123456789",
"icon": "checkpoint.png",
"location": "<private>"
}
]
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.43.1.1.0",
"sensor_index": "advancedUrlFilteringSubscriptionStatus.0",
"sensor_type": "advancedUrlFilteringSubscriptionStatus",
"sensor_descr": "URL Filtering Subscription",
"group": "Licenses",
"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": "advancedUrlFilteringSubscriptionStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.43.2.1.0",
"sensor_index": "advancedUrlFilteringUpdateStatus.0",
"sensor_type": "advancedUrlFilteringUpdateStatus",
"sensor_descr": "URL Filtering Update",
"group": "Update",
"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": "advancedUrlFilteringUpdateStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.46.1.1.0",
"sensor_index": "amwABUpdateStatus.0",
"sensor_type": "amwABUpdateStatus",
"sensor_descr": "Anti Malware Update",
"group": "Update",
"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": "amwABUpdateStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.46.5.1.0",
"sensor_index": "amwAVUpdateStatus.0",
"sensor_type": "amwAVUpdateStatus",
"sensor_descr": "Anti Virus Update",
"group": "Update",
"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": "amwAVUpdateStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.46.2.1.0",
"sensor_index": "antiBotSubscriptionStatus.0",
"sensor_type": "antiBotSubscriptionStatus",
"sensor_descr": "Anti Bot Subscription",
"group": "Licenses",
"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": "antiBotSubscriptionStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.46.3.1.0",
"sensor_index": "antiVirusSubscriptionStatus.0",
"sensor_type": "antiVirusSubscriptionStatus",
"sensor_descr": "Anti Virus Subscription",
"group": "Licenses",
"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": "antiVirusSubscriptionStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.39.1.1.0",
"sensor_index": "applicationControlSubscriptionStatus.0",
"sensor_type": "applicationControlSubscriptionStatus",
"sensor_descr": "Application Control Subscription",
"group": "Licenses",
"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": "applicationControlSubscriptionStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.39.2.1.0",
"sensor_index": "applicationControlUpdateStatus.0",
"sensor_type": "applicationControlUpdateStatus",
"sensor_descr": "Application Control Update",
"group": "Update",
"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": "applicationControlUpdateStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.5.0",
"sensor_index": "fwLocalLoggingStat.0",
"sensor_type": "fwLocalLoggingStat",
"sensor_descr": "Local Log Server Status",
"group": "Logging",
"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": "fwLocalLoggingStat"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.1.0",
"sensor_index": "fwLSConnOverall.0",
"sensor_type": "fwLSConnOverall",
"sensor_descr": "Log Server Connectivity",
"group": "Logging",
"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": "fwLSConnOverall"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.3.1.3.1.0",
"sensor_index": "fwLSConnState.1.0",
"sensor_type": "fwLSConnState",
"sensor_descr": "10.10.10.10, Log Server Connectivity",
"group": "Logging",
"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": "fwLSConnState"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.1.30.3.1.3.2.0",
"sensor_index": "fwLSConnState.2.0",
"sensor_type": "fwLSConnState",
"sensor_descr": "11.11.11.11, Log Server Connectivity",
"group": "Logging",
"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": "fwLSConnState"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.5.5.0",
"sensor_index": "haStarted.0",
"sensor_type": "haStarted",
"sensor_descr": "Cluster mechanism started",
"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": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "haStarted"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.5.101.0",
"sensor_index": "haStatCode.0",
"sensor_type": "haStatCode",
"sensor_descr": "Cluster member status code",
"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": "haStatCode"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2620.1.5.6.0",
"sensor_index": "haState.0",
"sensor_type": "haState",
"sensor_descr": "Cluster member state",
"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": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "haState"
}
],
"state_indexes": [
{
"state_name": "advancedUrlFilteringSubscriptionStatus",
"state_descr": "valid",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "advancedUrlFilteringSubscriptionStatus",
"state_descr": "expired",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "advancedUrlFilteringSubscriptionStatus",
"state_descr": "about-to-expire",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 1
},
{
"state_name": "advancedUrlFilteringSubscriptionStatus",
"state_descr": "not-associated",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 0
},
{
"state_name": "advancedUrlFilteringSubscriptionStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "advancedUrlFilteringUpdateStatus",
"state_descr": "failed",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "advancedUrlFilteringUpdateStatus",
"state_descr": "up-to-date",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "advancedUrlFilteringUpdateStatus",
"state_descr": "new",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "advancedUrlFilteringUpdateStatus",
"state_descr": "degrade",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "advancedUrlFilteringUpdateStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "amwABUpdateStatus",
"state_descr": "failed",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "amwABUpdateStatus",
"state_descr": "up-to-date",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "amwABUpdateStatus",
"state_descr": "new",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "amwABUpdateStatus",
"state_descr": "degrade",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "amwABUpdateStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "amwAVUpdateStatus",
"state_descr": "failed",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "amwAVUpdateStatus",
"state_descr": "up-to-date",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "amwAVUpdateStatus",
"state_descr": "new",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "amwAVUpdateStatus",
"state_descr": "degrade",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "amwAVUpdateStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "antiBotSubscriptionStatus",
"state_descr": "valid",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "antiBotSubscriptionStatus",
"state_descr": "expired",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "antiBotSubscriptionStatus",
"state_descr": "about-to-expire",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 1
},
{
"state_name": "antiBotSubscriptionStatus",
"state_descr": "not-associated",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 0
},
{
"state_name": "antiBotSubscriptionStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "antiVirusSubscriptionStatus",
"state_descr": "valid",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "antiVirusSubscriptionStatus",
"state_descr": "expired",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "antiVirusSubscriptionStatus",
"state_descr": "about-to-expire",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 1
},
{
"state_name": "antiVirusSubscriptionStatus",
"state_descr": "not-associated",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 0
},
{
"state_name": "antiVirusSubscriptionStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "applicationControlSubscriptionStatus",
"state_descr": "valid",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "applicationControlSubscriptionStatus",
"state_descr": "expired",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "applicationControlSubscriptionStatus",
"state_descr": "about-to-expire",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 1
},
{
"state_name": "applicationControlSubscriptionStatus",
"state_descr": "not-associated",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 0
},
{
"state_name": "applicationControlSubscriptionStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "applicationControlUpdateStatus",
"state_descr": "failed",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "applicationControlUpdateStatus",
"state_descr": "up-to-date",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "applicationControlUpdateStatus",
"state_descr": "new",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "applicationControlUpdateStatus",
"state_descr": "degrade",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "applicationControlUpdateStatus",
"state_descr": "unknown",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 3
},
{
"state_name": "fwLocalLoggingStat",
"state_descr": "To log servers",
"state_draw_graph": 3,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "fwLocalLoggingStat",
"state_descr": "Local configured",
"state_draw_graph": 2,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "fwLocalLoggingStat",
"state_descr": "Local due to connectivity",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "fwLocalLoggingStat",
"state_descr": "Local due to high rate",
"state_draw_graph": 0,
"state_value": 3,
"state_generic_value": 2
},
{
"state_name": "fwLSConnOverall",
"state_descr": "Ok",
"state_draw_graph": 2,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "fwLSConnOverall",
"state_descr": "Warning",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 1
},
{
"state_name": "fwLSConnOverall",
"state_descr": "Error",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "fwLSConnState",
"state_descr": "Ok",
"state_draw_graph": 2,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "fwLSConnState",
"state_descr": "Error",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "fwLSConnState",
"state_descr": "Not Active",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "haStarted",
"state_descr": "no",
"state_draw_graph": 0,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "haStarted",
"state_descr": "yes",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "haStatCode",
"state_descr": "Up",
"state_draw_graph": 2,
"state_value": 0,
"state_generic_value": 0
},
{
"state_name": "haStatCode",
"state_descr": "Attention",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 3
},
{
"state_name": "haStatCode",
"state_descr": "Down",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 1
},
{
"state_name": "haState",
"state_descr": "down",
"state_draw_graph": 0,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "haState",
"state_descr": "active",
"state_draw_graph": 3,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "haState",
"state_descr": "standby",
"state_draw_graph": 2,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "haState",
"state_descr": "active attention",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
}
]
},
"poller": "matches discovery"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,37 @@
1.3.6.1.2.1.1.1.0|4|Linux vsx123 2.6.18-92cpx86_64 #1 SMP Tue Sep 8 20:04:48 IDT 2020 x86_64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|360217183
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.25.1.1.0|67|360227046
1.3.6.1.2.1.25.1.4.0|4|ro noht root=/dev/vg_splat/lv_current vmalloc=306M panic=15 console=ttyS0 crashkernel=128M@16M 3 quiet
1.3.6.1.4.1.2620.1.1.4.0|66|1265706970
1.3.6.1.4.1.2620.1.1.5.0|66|56
1.3.6.1.4.1.2620.1.1.6.0|66|16795063
1.3.6.1.4.1.2620.1.1.7.0|66|157825429
1.3.6.1.4.1.2620.1.1.25.3.0|66|61476
1.3.6.1.4.1.2620.1.1.30.1.0|2|0
1.3.6.1.4.1.2620.1.1.30.3.1.2.1.0|4|10.10.10.10
1.3.6.1.4.1.2620.1.1.30.3.1.2.2.0|4|11.11.11.11
1.3.6.1.4.1.2620.1.1.30.3.1.3.1.0|66|0
1.3.6.1.4.1.2620.1.1.30.3.1.3.2.0|66|2
1.3.6.1.4.1.2620.1.1.30.5.0|2|0
1.3.6.1.4.1.2620.1.1.30.7.0|66|435
1.3.6.1.4.1.2620.1.5.5.0|4|yes
1.3.6.1.4.1.2620.1.5.6.0|4|active
1.3.6.1.4.1.2620.1.5.101.0|66|0
1.3.6.1.4.1.2620.1.6.4.1.0|4|R80.30
1.3.6.1.4.1.2620.1.6.5.1.0|4|Gaia
1.3.6.1.4.1.2620.1.6.16.3.0|4|LR123456789
1.3.6.1.4.1.2620.1.6.16.7.0|4|Check Point 23900
1.3.6.1.4.1.2620.1.39.1.1.0|4|valid
1.3.6.1.4.1.2620.1.39.2.1.0|4|up-to-date
1.3.6.1.4.1.2620.1.43.1.1.0|4|valid
1.3.6.1.4.1.2620.1.43.2.1.0|4|up-to-date
1.3.6.1.4.1.2620.1.46.1.1.0|4|up-to-date
1.3.6.1.4.1.2620.1.46.2.1.0|4|valid
1.3.6.1.4.1.2620.1.46.3.1.0|4|valid
1.3.6.1.4.1.2620.1.46.4.1.0|4|
1.3.6.1.4.1.2620.1.46.5.1.0|4|new
1.3.6.1.6.3.10.2.1.3.0|2|3602272

View File

@@ -0,0 +1,160 @@
1.3.6.1.2.1.1.1.0|4|Linux fw-log 3.10.0-957.5.1cpx86_64 #1 SMP Tue Sep 8 20:25:16 IDT 2020 x86_64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2620.1.6.123.1.49
1.3.6.1.2.1.1.3.0|67|1152341622
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.25.1.1.0|67|1152345026
1.3.6.1.2.1.25.1.4.0|4|ro root=/dev/mapper/vg_splat-lv_current vmalloc=256M noht panic=15 console=ttyS0 crashkernel=auto 3 quiet
1.3.6.1.4.1.2620.1.6.4.1.0|4|R80.30
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.1.0|4|01-Inlet Ambient
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.2.0|4|02-CPU 1
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.3.0|4|03-CPU 2
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.4.0|4|05-P1 DIMM 7-12
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.5.0|4|07-P2 DIMM 7-12
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.6.0|4|08-HD Max
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.7.0|4|10-Chipset
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.8.0|4|11-PS 1 Inlet
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.9.0|4|12-PS 2 Inlet
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.10.0|4|13-VR P1
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.11.0|4|14-VR P2
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.12.0|4|15-VR P1 Mem
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.13.0|4|16-VR P1 Mem
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.14.0|4|17-VR P2 Mem
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.15.0|4|18-VR P2 Mem
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.16.0|4|19-PS 1 Internal
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.17.0|4|20-PS 2 Internal
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.18.0|4|27-HD Controller
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.19.0|4|30-Front Ambient
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.20.0|4|31-PCI 1 Zone.
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.21.0|4|32-PCI 2 Zone.
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.22.0|4|33-PCI 3 Zone.
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.23.0|4|37-HD Cntlr Zone
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.24.0|4|38-I/O Zone
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.25.0|4|39-P/S 2 Zone
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.26.0|4|40-Battery Zone
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.27.0|4|41-iLO Zone
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.28.0|4|43-Storage Batt
1.3.6.1.4.1.2620.1.6.7.8.1.1.2.29.0|4|44-Fuse
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.1.0|4|18
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.2.0|4|40
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.3.0|4|40
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.4.0|4|35
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.5.0|4|34
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.6.0|4|35
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.7.0|4|39
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.8.0|4|27
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.9.0|4|28
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.10.0|4|36
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.11.0|4|37
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.12.0|4|29
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.13.0|4|30
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.14.0|4|32
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.15.0|4|30
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.16.0|4|40
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.17.0|4|40
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.18.0|4|47
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.19.0|4|25
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.20.0|4|31
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.21.0|4|32
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.22.0|4|33
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.23.0|4|41
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.24.0|4|32
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.25.0|4|33
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.26.0|4|34
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.27.0|4|38
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.28.0|4|23
1.3.6.1.4.1.2620.1.6.7.8.1.1.3.29.0|4|33
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.1.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.2.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.3.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.4.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.5.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.6.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.7.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.8.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.9.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.10.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.11.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.12.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.13.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.14.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.15.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.16.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.17.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.18.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.19.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.20.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.21.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.22.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.23.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.24.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.25.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.26.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.27.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.28.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.1.1.6.29.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.1.0|4|Fan 1
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.2.0|4|Fan 1 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.3.0|4|Fan 1 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.4.0|4|Fan 2
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.5.0|4|Fan 2 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.6.0|4|Fan 2 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.7.0|4|Fan 3
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.8.0|4|Fan 3 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.9.0|4|Fan 3 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.10.0|4|Fan 4
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.11.0|4|Fan 4 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.12.0|4|Fan 4 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.13.0|4|Fan 5
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.14.0|4|Fan 5 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.15.0|4|Fan 5 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.16.0|4|Fan 6
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.17.0|4|Fan 6 DutyCycle
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.18.0|4|Fan 6 Presence
1.3.6.1.4.1.2620.1.6.7.8.2.1.2.19.0|4|Fans
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.1.0|4|12.15
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.2.0|4|12.15
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.3.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.4.0|4|15.29
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.5.0|4|15.29
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.6.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.7.0|4|16.07
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.8.0|4|16.07
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.9.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.10.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.11.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.12.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.13.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.14.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.15.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.16.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.17.0|4|20.38
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.18.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.3.19.0|4|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.1.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.2.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.3.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.4.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.5.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.6.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.7.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.8.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.9.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.10.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.11.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.12.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.13.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.14.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.15.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.16.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.17.0|2|1
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.18.0|2|0
1.3.6.1.4.1.2620.1.6.7.8.2.1.6.19.0|2|0
1.3.6.1.4.1.2620.1.6.16.3.0|4|
1.3.6.1.4.1.2620.1.6.16.7.0|4|ProLiant DL380 Gen9
1.3.6.1.4.1.2620.1.7.5.0|4|active
1.3.6.1.4.1.2620.1.7.6.0|66|1
1.3.6.1.4.1.2620.1.7.14.1.0|66|913
1.3.6.1.4.1.2620.1.7.101.0|66|0
1.3.6.1.6.3.10.2.1.3.0|2|11523417