Files
librenms-librenms/includes/html/graphs/device/ubnt_airfiber_RFTotOctetsTx.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

16 lines
606 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:'Octets Now Min Max\\n'";
$rrd_options .= ' DEF:txoctetsAll=' . $rrdfilename . ':txoctetsAll:AVERAGE ';
$rrd_options .= " LINE1:txoctetsAll#CC0000:'Tx Octets ' ";
$rrd_options .= ' GPRINT:txoctetsAll:LAST:%0.2lf%s ';
$rrd_options .= ' GPRINT:txoctetsAll:MIN:%0.2lf%s ';
$rrd_options .= ' GPRINT:txoctetsAll:MAX:%0.2lf%s\\\l ';
}