librenms/html/includes/graphs/device/ubnt_airmax_WlStatStaCount.inc.php
2015-04-03 20:10:42 +01:00

19 lines
608 B
PHP
Executable File

<?php
include("includes/graphs/common.inc.php");
$rrd_options .= " -l 0 -E ";
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/ubnt-airmax-mib.rrd";
if (file_exists($rrdfilename))
{
$rrd_options .= " COMMENT:' Now Min Max\\n'";
$rrd_options .= " DEF:WlStatStaCount=".$rrdfilename.":WlStatStaCount:AVERAGE ";
$rrd_options .= " LINE1:WlStatStaCount#CC0000:'Stations ' ";
$rrd_options .= " GPRINT:WlStatStaCount:LAST:%3.0lf ";
$rrd_options .= " GPRINT:WlStatStaCount:MIN:%3.0lf ";
$rrd_options .= " GPRINT:WlStatStaCount:MAX:%3.0lf\\\l ";
}