58 lines
3.4 KiB
PHP
58 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage poller
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
/*
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslIndex.1 = INTEGER: 1
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslLinkStatus.1 = STRING: "Up"
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslTc.1 = STRING: "G.993.2_Annex_K_PTM"
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslUsAttenuation.1 = INTEGER: 0
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslDsAttenuation.1 = INTEGER: 290
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslUsNoiseMargin.1 = INTEGER: 57
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslDsNoiseMargin.1 = INTEGER: 67
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslUsCurrRate.1 = INTEGER: 5788
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslDsCurrRate.1 = INTEGER: 14972
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslModulationType.1 = STRING: "G.993.2_Annex_B"
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslUsMaxTheorRate.1 = INTEGER: 5844000
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslDsMaxTheorRate.1 = INTEGER: 14983760
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslUsTotBytes.1 = INTEGER: 0
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslDsTotBytes.1 = INTEGER: 0
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslNeTotCrcErr.1 = INTEGER: 3043
|
|
enterprises.aethra.atosnt.dsl.xdsl.xdslTable.xdslEntry.xdslNeShowtimeCrcErr.1 = INTEGER: 3043
|
|
|
|
.1.3.6.1.4.1.7745.5.3.1.1.1.1.1 = INTEGER: 1
|
|
|
|
*/
|
|
|
|
$table_defs['AETHRA-MIB']['xdsl'] = [
|
|
'table' => 'xdsl',
|
|
'numeric' => '.1.3.6.1.4.1.7745.5.3.1.1.1',
|
|
'call_function' => 'snmp_walk',
|
|
'mib' => 'AETHRA-MIB',
|
|
'descr' => 'Aethra xDSL Statistics',
|
|
'graphs' => ['xdsl_attenuation', 'xdsl_noisemargin', 'xdsl_rate', 'xdsl_bits', 'xdsl_errors'],
|
|
'ds_rename' => ['xdsl' => ''],
|
|
'index' => '1',
|
|
'oids' => [
|
|
'xdslUsAttenuation' => ['numeric' => '4', 'multiplier' => '0.1', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslDsAttenuation' => ['numeric' => '5', 'multiplier' => '0.1', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslUsNoiseMargin' => ['numeric' => '6', 'multiplier' => '0.1', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslDsNoiseMargin' => ['numeric' => '7', 'multiplier' => '0.1', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslUsCurrRate' => ['numeric' => '8', 'multiplier' => '1000', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslDsCurrRate' => ['numeric' => '9', 'multiplier' => '1000', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslUsMaxTheorRate' => ['numeric' => '11', 'multiplier' => '1000', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslDsMaxTheorRate' => ['numeric' => '12', 'multiplier' => '1000', 'descr' => '', 'ds_type' => 'GAUGE', 'ds_min' => '0'],
|
|
'xdslUsTotBytes' => ['numeric' => '13', 'descr' => '', 'ds_type' => 'COUNTER', 'ds_min' => '0'],
|
|
'xdslDsTotBytes' => ['numeric' => '14', 'descr' => '', 'ds_type' => 'COUNTER', 'ds_min' => '0'],
|
|
'xdslNeTotCrcErr' => ['numeric' => '15', 'descr' => '', 'ds_type' => 'COUNTER', 'ds_min' => '0']
|
|
]
|
|
]; |