Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
371 B
PHP
Raw Permalink Normal View History

<?php
2021-03-28 17:25:30 -05:00
$rrd_filename = Rrd::name($device['hostname'], 'ciscowlc');
$rrd_list[0]['filename'] = $rrd_filename;
$rrd_list[0]['descr'] = 'Number of APs';
$rrd_list[0]['ds'] = 'NUMAPS';
$unit_text = 'APs';
$units = '';
$total_units = '';
$colours = 'mixed';
$scale_min = '0';
$nototal = 1;
if ($rrd_list) {
2019-04-11 23:26:42 -05:00
include 'includes/html/graphs/generic_multi_line.inc.php';
}