librenms-librenms/html/includes/graphs/device/ubnt_airmax_WlStatCcq.inc.php
Neil Lathwood c1779f055f fix: Updated min/max values for ubnt graphs (#4811)
* fix: Updated min/max values for ubnt graphs

* updated min/max
2016-10-19 19:47:22 -05:00

20 lines
609 B
PHP

<?php
$scale_min = 0;
$scale_max = 100;
require 'includes/graphs/common.inc.php';
$rrd_options .= ' -l 0 -E ';
$rrdfilename = rrd_name($device['hostname'], 'ubnt-airmax-mib');
if (file_exists($rrdfilename)) {
$rrd_options .= " COMMENT:'Percent Now Min Max\\n'";
$rrd_options .= ' DEF:WlStatCcq='.$rrdfilename.':WlStatCcq:AVERAGE ';
$rrd_options .= " LINE1:WlStatCcq#CC0000:'CCQ ' ";
$rrd_options .= ' GPRINT:WlStatCcq:LAST:%3.2lf ';
$rrd_options .= ' GPRINT:WlStatCcq:MIN:%3.2lf ';
$rrd_options .= ' GPRINT:WlStatCcq:MAX:%3.2lf\\\l ';
}