52 lines
2.7 KiB
PHP
52 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage poller
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
/*
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringFPCIndex.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringSPUIndex.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringCPUUsage.0 = Gauge32: 0 percent
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringMemoryUsage.0 = Gauge32: 57 percent
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringCurrentFlowSession.0 = Gauge32: 7
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringMaxFlowSession.0 = Gauge32: 524288
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringCurrentCPSession.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringMaxCPSession.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringNodeIndex.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringNodeDescr.0 = STRING: single
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringFlowSessIPv4.0 = Gauge32: 7
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringFlowSessIPv6.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringCPSessIPv4.0 = Gauge32: 0
|
|
JUNIPER-SRX5000-SPU-MONITORING-MIB::jnxJsSPUMonitoringCPSessIPv6.0 = Gauge32: 0
|
|
*/
|
|
|
|
$table_defs['JUNIPER-SRX5000-SPU-MONITORING-MIB']['jnxJsSPUMonitoring'] = [
|
|
'table' => 'jnxJsSPUMonitoringObjectsTable',
|
|
'numeric' => '.1.3.6.1.4.1.2636.3.39.1.12.1.1.1',
|
|
'mib' => 'JUNIPER-SRX5000-SPU-MONITORING-MIB',
|
|
'mib_dir' => 'juniper',
|
|
'descr' => 'Juniper JunOS SRX 5000 SPU Monitoring',
|
|
'graphs' => ['jnxJsSPUMonitoringFlowSessions', 'jnxJsSPUMonitoringCPSessions'],
|
|
'ds_rename' => ['jnxJsSPUMonitoring' => ''],
|
|
'oids' => [
|
|
'jnxJsSPUMonitoringCurrentFlowSession' => ['numeric' => '6', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringMaxFlowSession' => ['numeric' => '7', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringCurrentCPSession' => ['numeric' => '8', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringMaxCPSession' => ['numeric' => '9', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringFlowSessIPv4' => ['numeric' => '12', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringFlowSessIPv6' => ['numeric' => '13', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringCPSessIPv4' => ['numeric' => '14', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'jnxJsSPUMonitoringCPSessIPv6' => ['numeric' => '15', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
]
|
|
];
|
|
|
|
// EOF
|