mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: remove duplicated data collection in old wifi module Still a bit more work before we can fully remove it * remove unused graphs update overview graphs for some wireless os
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$associations=array();
|
|
|
|
// if this config flag is true, don't poll for stations
|
|
// this in case of large APs which may have many stations
|
|
// to prevent causing long polling times
|
|
if ($config['xirrus_disable_stations']!=true) {
|
|
// station associations
|
|
// custom RRDs and graph as each AP may have 16 radios
|
|
$assoc = snmpwalk_cache_oid($device, 'XIRRUS-MIB::stationAssociationIAP', array(), 'XIRRUS-MIB');
|
|
foreach ($assoc as $s) {
|
|
$radio = array_pop($s);
|
|
$associations[$radio] = (int)$associations[$radio] + 1;
|
|
}
|
|
unset($radio);
|
|
unset($assoc);
|
|
// write to rrds
|
|
foreach ($associations as $radio => $count) {
|
|
$measurement = 'xirrus_users';
|
|
$rrd_name = array($measurement, $radio);
|
|
$rrd_def = RrdDefinition::make()->addDataset('stations', 'GAUGE', 0, 3200);
|
|
$fields = array(
|
|
'stations' => $count
|
|
);
|
|
$tags = compact('radio', 'rrd_name', 'rrd_def');
|
|
data_update($device, $measurement, $tags, $fields);
|
|
}
|
|
$graphs['xirrus_stations'] = true;
|
|
} else {
|
|
$graphs['xirrus_stations'] = false;
|
|
}
|
|
|
|
// cleanup
|
|
unset($rrd_def, $associations, $tags, $fields, $measurement);
|