mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 16:08:55 +02:00
Fix coding style part 2
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
<?php
|
||||
|
||||
include("includes/graphs/common.inc.php");
|
||||
require 'includes/graphs/common.inc.php';
|
||||
|
||||
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-wireless.rrd";
|
||||
$rrdfilename = $config['rrd_dir'].'/'.$device['hostname'].'/siklu-wireless.rrd';
|
||||
|
||||
if (file_exists($rrdfilename)) {
|
||||
$rrd_options .= " COMMENT:'Hz Now Min Max\\n'";
|
||||
$rrd_options .= " DEF:rfOperFreq=".$rrdfilename.":rfOperFreq:AVERAGE ";
|
||||
$rrd_options .= ' DEF:rfOperFreq='.$rrdfilename.':rfOperFreq:AVERAGE ';
|
||||
$rrd_options .= " LINE1:rfOperFreq#CC0000:'GHz ' ";
|
||||
$rrd_options .= " GPRINT:rfOperFreq:LAST:%3.2lf ";
|
||||
$rrd_options .= " GPRINT:rfOperFreq:MIN:%3.2lf ";
|
||||
$rrd_options .= " GPRINT:rfOperFreq:MAX:%3.2lf\\\l ";
|
||||
$rrd_options .= ' GPRINT:rfOperFreq:LAST:%3.2lf ';
|
||||
$rrd_options .= ' GPRINT:rfOperFreq:MIN:%3.2lf ';
|
||||
$rrd_options .= ' GPRINT:rfOperFreq:MAX:%3.2lf\\\l ';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user