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

22 lines
442 B
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/'.safename("arubaap-$ap[name].$ap[radio_number].rrd");
$rrd_list[0]['filename'] = $rrd_filename;
2015-07-13 20:10:26 +02:00
$rrd_list[0]['descr'] = 'Channel';
$rrd_list[0]['ds'] = 'channel';
2015-07-13 20:10:26 +02:00
$unit_text = 'Channel';
2015-07-13 20:10:26 +02:00
$units = '';
$total_units = '';
$colours = 'mixed';
2015-07-13 20:10:26 +02:00
$scale_min = '0';
$nototal = 1;
2015-07-13 20:10:26 +02:00
if ($rrd_list) {
include 'includes/graphs/generic_multi_line.inc.php';
}