mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 16:06:29 +02:00
16 lines
605 B
PHP
16 lines
605 B
PHP
<?php
|
|
|
|
require '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 ';
|
|
}
|