mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 00:24:21 +02:00
t # This is a combination of 11 commits.
More mibs needed from http://www.ieee802.org/1/files/public/MIBs/ Updated mib names Updated poller function and siklu call Updates for Siklu detection Removed one graph not supported Added rfOperationalFrequency graph Removed modulation graph Work on siklu support Siklu packets supports Last updates for Siklu support Updated more siklu support
This commit is contained in:
@@ -1371,33 +1371,80 @@ $config['graph_types']['device']['siklu_rfAverageRssi'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '0',
|
||||
'descr' => 'Radio Average RSSI',
|
||||
'file' => 'siklu-mib.rrd',
|
||||
'file' => 'siklu-wireless.rrd',
|
||||
'colours' => 'blues',
|
||||
'unit_text' => 'dBm',
|
||||
'ds' => array(
|
||||
'WlStatRssi' => array('label' => 'RSSI', 'draw' => 'AREA', 'line' => TRUE)
|
||||
'rfAverageRssi' => array('label' => 'RSSI', 'draw' => 'AREA', 'line' => TRUE)
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfAverageCinr'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '1',
|
||||
'descr' => 'Radio Average CINR',
|
||||
'file' => 'siklu-mib.rrd',
|
||||
'file' => 'siklu-wireless.rrd',
|
||||
'colours' => 'reds',
|
||||
'unit_text' => 'dB',
|
||||
'ds' => array(
|
||||
'WlStatRssi' => array('label' => 'CINR', 'draw' => 'AREA', 'line' => TRUE)
|
||||
'rfAverageCinr' => array('label' => 'CINR', 'draw' => 'AREA', 'line' => TRUE)
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfModulationType'] = array(
|
||||
$config['graph_types']['device']['siklu_rfOperationalFrequency'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '2',
|
||||
'descr' => 'RF Modulation',
|
||||
'file' => 'siklu-mib.rrd',
|
||||
'colours' => 'greens',
|
||||
'unit_text' => '',
|
||||
'descr' => 'Operational Frequency',
|
||||
'file' => 'siklu-wireless.rrd',
|
||||
'colours' => 'reds',
|
||||
'unit_text' => 'GHz',
|
||||
'ds' => array(
|
||||
'WlStatRssi' => array('label' => 'RFM', 'draw' => 'AREA', 'line' => TRUE)
|
||||
'rfOperFreq' => array('label' => 'Hz', 'draw' => 'AREA', 'line' => TRUE)
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfinterfacePkts'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '3',
|
||||
'descr' => 'Packets',
|
||||
'file' => 'siklu-interface.rrd',
|
||||
'unit_text' => 'pps',
|
||||
'ds' => array(
|
||||
'rfIPkts' => array('label' => 'In bps', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfOutPkts' => array('label' => 'Out bps', 'draw' => 'LINE', 'line' => TRUE),
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfinterfaceOtherPkts'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '4',
|
||||
'descr' => 'Other Packets',
|
||||
'file' => 'siklu-interface.rrd',
|
||||
'unit_text' => 'pps',
|
||||
'ds' => array(
|
||||
'rfInGoodPkts' => array('label' => 'Good Pkts', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfInErroredPkts' => array('label' => 'Errored Pkts', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfInLostPkts' => array('label' => 'Lost Pkts', 'draw' => 'LINE', 'line' => TRUE),
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfinterfaceOctets'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '5',
|
||||
'descr' => 'Traffic',
|
||||
'file' => 'siklu-interface.rrd',
|
||||
'unit_text' => 'bps',
|
||||
'ds' => array(
|
||||
'rfInOctets' => array('label' => 'In bps', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfOutOctets' => array('label' => 'Out bps', 'draw' => 'LINE', 'line' => TRUE),
|
||||
)
|
||||
);
|
||||
$config['graph_types']['device']['siklu_rfinterfaceOtherOctets'] = array(
|
||||
'section' => 'wireless',
|
||||
'order' => '6',
|
||||
'descr' => 'Other Octets',
|
||||
'file' => 'siklu-interface.rrd',
|
||||
'unit_text' => 'bps',
|
||||
'ds' => array(
|
||||
'rfInIdleOctets' => array('label' => 'In Idle', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfOutIdleOctets' => array('label' => 'Out Idle', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfInGoodOctets' => array('label' => 'Good Octets', 'draw' => 'LINE', 'line' => TRUE),
|
||||
'rfInErroredOctetts' => array('label' => 'Errored Octets', 'draw' => 'LINE', 'line' => TRUE),
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user