Files
librenms-librenms/includes/html/graphs/device/ubnt_airfiber_TxPower.inc.php
Tony Murray 1c379dcd05 Remove legacy function calls (#12651)
* massive inlines

* fix style and wtf

* remove rrdtool.inc.php include

* fix CommonFunctions namespace issues

* looking for missing class space, fix undefined class issues

* style fixes
2021-03-29 00:25:30 +02:00

17 lines
582 B
PHP

<?php
require 'includes/html/graphs/common.inc.php';
$rrd_options .= ' -l 0 -E ';
$rrdfilename = Rrd::name($device['hostname'], 'ubnt-airfiber-mib');
if (Rrd::checkRrdExists($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 ';
}