Files
librenms-librenms/includes/html/graphs/accesspoints/interference.inc.php

22 lines
413 B
PHP
Raw Normal View History

<?php
2020-09-21 15:40:17 +02:00
$rrd_filename = rrd_name($device['hostname'], ['arubaap', $ap['name'] . $ap['radio_number']]);
$rrd_list[0]['filename'] = $rrd_filename;
2020-09-21 15:40:17 +02:00
$rrd_list[0]['descr'] = 'Interference';
$rrd_list[0]['ds'] = 'interference';
$unit_text = 'Int';
2020-09-21 15:40:17 +02:00
$units = '';
$total_units = '';
2020-09-21 15:40:17 +02:00
$colours = 'mixed';
$scale_min = '0';
$nototal = 1;
if ($rrd_list) {
include 'includes/html/graphs/generic_multi_line.inc.php';
}