librenms-librenms/html/includes/graphs/device/ubnt_airfiber_RFTotOctetsTx.inc.php
2015-04-28 22:58:03 +02:00

19 lines
598 B
PHP

<?php
include("includes/graphs/common.inc.php");
//$rrd_options .= " -l 0 -E ";
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/ubnt-airfiber-mib.rrd";
if (file_exists($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 ";
}