Files
2020-09-21 15:40:17 +02:00

17 lines
586 B
PHP

<?php
require 'includes/html/graphs/common.inc.php';
$rrd_options .= ' -l 0 -E ';
$rrdfilename = rrd_name($device['hostname'], 'ubnt-airfiber-mib');
if (rrdtool_check_rrd_exists($rrdfilename)) {
$rrd_options .= " COMMENT:'dbm Now Min Max\\n'";
$rrd_options .= ' DEF:txPower=' . $rrdfilename . ':txPower:AVERAGE ';
$rrd_options .= " LINE1:txPower#CC0000:'Tx Power ' ";
$rrd_options .= ' GPRINT:txPower:LAST:%3.2lf ';
$rrd_options .= ' GPRINT:txPower:MIN:%3.2lf ';
$rrd_options .= ' GPRINT:txPower:MAX:%3.2lf\\\l ';
}