mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 00:24:21 +02:00
Apply "Squiz" code style on old (pre-2014) files
This commit is contained in:
@@ -1,25 +1,22 @@
|
||||
<?php
|
||||
|
||||
include("includes/graphs/common.inc.php");
|
||||
require 'includes/graphs/common.inc.php';
|
||||
|
||||
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-nginx-".$app['app_id'].".rrd";
|
||||
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/app-nginx-'.$app['app_id'].'.rrd';
|
||||
|
||||
if (is_file($rrd_filename))
|
||||
{
|
||||
if (is_file($rrd_filename)) {
|
||||
$rrd_options .= ' -b 1000 ';
|
||||
$rrd_options .= ' -l 0 ';
|
||||
$rrd_options .= ' DEF:a='.$rrd_filename.':Requests:AVERAGE';
|
||||
|
||||
$rrd_options .= " -b 1000 ";
|
||||
$rrd_options .= " -l 0 ";
|
||||
$rrd_options .= " DEF:a=".$rrd_filename.":Requests:AVERAGE";
|
||||
$rrd_options .= " COMMENT:'Requests Current Average Maximum\\n'";
|
||||
|
||||
$rrd_options .= " COMMENT:'Requests Current Average Maximum\\n'";
|
||||
|
||||
$rrd_options .= " AREA:a#98FB98";
|
||||
$rrd_options .= " LINE1.5:a#006400:'Requests '";
|
||||
$rrd_options .= " GPRINT:a:LAST:'%6.2lf %s'";
|
||||
$rrd_options .= " GPRINT:a:AVERAGE:'%6.2lf %s'";
|
||||
$rrd_options .= " GPRINT:a:MAX:'%6.2lf %s\\n'";
|
||||
} else {
|
||||
$error_msg = "Missing RRD";
|
||||
$rrd_options .= ' AREA:a#98FB98';
|
||||
$rrd_options .= " LINE1.5:a#006400:'Requests '";
|
||||
$rrd_options .= " GPRINT:a:LAST:'%6.2lf %s'";
|
||||
$rrd_options .= " GPRINT:a:AVERAGE:'%6.2lf %s'";
|
||||
$rrd_options .= " GPRINT:a:MAX:'%6.2lf %s\\n'";
|
||||
}
|
||||
else {
|
||||
$error_msg = 'Missing RRD';
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user