mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
50 lines
1.0 KiB
PHP
50 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
echo ' Sub10 Systems';
|
||
|
|
||
|
$mib_oids = array(
|
||
|
'sub10RadioLclTxPower' => array(
|
||
|
'0',
|
||
|
'sub10RadioLclTxPower',
|
||
|
'Transmit Power',
|
||
|
'GAUGE',
|
||
|
),
|
||
|
'sub10RadioLclRxPower' => array(
|
||
|
'0',
|
||
|
'sub10RadioLclRxPower',
|
||
|
'Transmit Power',
|
||
|
'GAUGE',
|
||
|
),
|
||
|
'sub10RadioLclVectErr' => array(
|
||
|
'0',
|
||
|
'sub10RadioLclVectErr',
|
||
|
'Transmit Power',
|
||
|
'GAUGE',
|
||
|
),
|
||
|
'sub10RadioLclLnkLoss' => array(
|
||
|
'0',
|
||
|
'sub10RadioLclLnkLoss',
|
||
|
'Transmit Power',
|
||
|
'GAUGE',
|
||
|
),
|
||
|
'sub10RadioLclAFER' => array(
|
||
|
'0',
|
||
|
'sub10RadioLclAFER',
|
||
|
'Transmit Power',
|
||
|
'GAUGE',
|
||
|
),
|
||
|
);
|
||
|
|
||
|
$mib_graphs = array(
|
||
|
'sub10_sub10RadioLclTxPower',
|
||
|
'sub10_sub10RadioLclRxPower',
|
||
|
'sub10_sub10RadioLclVectErr',
|
||
|
'sub10_sub10RadioLclLnkLoss',
|
||
|
'sub10_sub10RadioLclAFER',
|
||
|
);
|
||
|
|
||
|
unset($graph, $oids, $oid);
|
||
|
|
||
|
poll_mib_def($device, 'SUB10SYSTEMS-MIB:sub10Systems', 'sub10', $mib_oids, $mib_graphs, $graphs);
|
||
|
|