mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply "Squiz" code style on old (pre-2014) files
This commit is contained in:
@@ -1,94 +1,89 @@
|
||||
<?php
|
||||
|
||||
$src = device_by_id_cache($_GET['src']);
|
||||
$src = device_by_id_cache($_GET['src']);
|
||||
|
||||
// Dear Tobias. You write in Perl, this makes me hate you forever.
|
||||
// This is my translation of Smokeping's graphing.
|
||||
// Thanks to Bill Fenner for Perl->Human translation:>
|
||||
$scale_min = 0;
|
||||
$scale_rigid = true;
|
||||
|
||||
$scale_min = 0;
|
||||
$scale_rigid = TRUE;
|
||||
require 'includes/graphs/common.inc.php';
|
||||
require 'smokeping_common.inc.php';
|
||||
|
||||
include("includes/graphs/common.inc.php");
|
||||
include("smokeping_common.inc.php");
|
||||
$i = 0;
|
||||
$pings = 20;
|
||||
$iter = 0;
|
||||
$colourset = 'mixed';
|
||||
|
||||
$i = 0;
|
||||
$pings = 20;
|
||||
$iter = 0;
|
||||
$colourset = "mixed";
|
||||
|
||||
if($width > "500")
|
||||
{
|
||||
$descr_len = 18;
|
||||
} else {
|
||||
$descr_len = 12 + round(($width - 275) / 8);
|
||||
if ($width > '500') {
|
||||
$descr_len = 18;
|
||||
}
|
||||
else {
|
||||
$descr_len = (12 + round(($width - 275) / 8));
|
||||
}
|
||||
|
||||
if($width > "500")
|
||||
{
|
||||
$rrd_options .= " COMMENT:'".substr(str_pad($unit_text, $descr_len+5),0,$descr_len+5)." RTT Loss SDev RTT\:SDev \l'";
|
||||
} else {
|
||||
$rrd_options .= " COMMENT:'".substr(str_pad($unit_text, $descr_len+5),0,$descr_len+5)." RTT Loss SDev RTT\:SDev \l'";
|
||||
if ($width > '500') {
|
||||
$rrd_options .= " COMMENT:'".substr(str_pad($unit_text, ($descr_len + 5)), 0, ($descr_len + 5))." RTT Loss SDev RTT\:SDev \l'";
|
||||
}
|
||||
else {
|
||||
$rrd_options .= " COMMENT:'".substr(str_pad($unit_text, ($descr_len + 5)), 0, ($descr_len + 5))." RTT Loss SDev RTT\:SDev \l'";
|
||||
}
|
||||
|
||||
if($src['hostname'] == $config['own_hostname'])
|
||||
{
|
||||
$filename = $config['smokeping']['dir'] . $device['hostname'].'.rrd';
|
||||
if (!file_exists($filename))
|
||||
{
|
||||
// Try with dots in hostname replaced by underscores
|
||||
$filename = $config['smokeping']['dir'] . str_replace(".", "_", $device['hostname']).'.rrd';
|
||||
}
|
||||
} else {
|
||||
$filename = $config['smokeping']['dir'] . $device['hostname'] .'~'.$src['hostname'].'.rrd';
|
||||
if (!file_exists($filename))
|
||||
{
|
||||
// Try with dots in hostname replaced by underscores
|
||||
$filename = $config['smokeping']['dir'] . str_replace(".", "-", $device['hostname']) .'~'.$src['hostname'].'.rrd';
|
||||
}
|
||||
if ($src['hostname'] == $config['own_hostname']) {
|
||||
$filename = $config['smokeping']['dir'].$device['hostname'].'.rrd';
|
||||
if (!file_exists($filename)) {
|
||||
// Try with dots in hostname replaced by underscores
|
||||
$filename = $config['smokeping']['dir'].str_replace('.', '_', $device['hostname']).'.rrd';
|
||||
}
|
||||
}
|
||||
else {
|
||||
$filename = $config['smokeping']['dir'].$device['hostname'].'~'.$src['hostname'].'.rrd';
|
||||
if (!file_exists($filename)) {
|
||||
// Try with dots in hostname replaced by underscores
|
||||
$filename = $config['smokeping']['dir'].str_replace('.', '-', $device['hostname']).'~'.$src['hostname'].'.rrd';
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($config['graph_colours'][$colourset][$iter])) {
|
||||
$iter = 0;
|
||||
}
|
||||
|
||||
if (!isset($config['graph_colours'][$colourset][$iter])) { $iter = 0; }
|
||||
$colour = $config['graph_colours'][$colourset][$iter];
|
||||
$iter++;
|
||||
|
||||
$descr = rrdtool_escape($source,$descr_len);
|
||||
$descr = rrdtool_escape($source, $descr_len);
|
||||
|
||||
$rrd_options .= " DEF:median$i=".$filename.":median:AVERAGE ";
|
||||
$rrd_options .= " DEF:loss$i=".$filename.":loss:AVERAGE";
|
||||
$rrd_options .= " DEF:median$i=".$filename.':median:AVERAGE ';
|
||||
$rrd_options .= " DEF:loss$i=".$filename.':loss:AVERAGE';
|
||||
$rrd_options .= " CDEF:ploss$i=loss$i,$pings,/,100,*";
|
||||
$rrd_options .= " CDEF:dm$i=median$i";
|
||||
# $rrd_options .= " CDEF:dm$i=median$i,0,".$max->{$start}.",LIMIT";
|
||||
|
||||
// $rrd_options .= " CDEF:dm$i=median$i,0,".$max->{$start}.",LIMIT";
|
||||
// start emulate Smokeping::calc_stddev
|
||||
foreach (range(1, $pings) as $p)
|
||||
{
|
||||
$rrd_options .= " DEF:pin".$i."p".$p."=".$filename.":ping".$p.":AVERAGE";
|
||||
$rrd_options .= " CDEF:p".$i."p".$p."=pin".$i."p".$p.",UN,0,pin".$i."p".$p.",IF";
|
||||
}
|
||||
foreach (range(1, $pings) as $p) {
|
||||
$rrd_options .= ' DEF:pin'.$i.'p'.$p.'='.$filename.':ping'.$p.':AVERAGE';
|
||||
$rrd_options .= ' CDEF:p'.$i.'p'.$p.'=pin'.$i.'p'.$p.',UN,0,pin'.$i.'p'.$p.',IF';
|
||||
}
|
||||
|
||||
unset($pings_options, $m_options, $sdev_options);
|
||||
|
||||
foreach (range(2, $pings) as $p)
|
||||
{
|
||||
$pings_options .= ",p".$i."p".$p.",UN,+";
|
||||
$m_options .= ",p".$i."p".$p.",+";
|
||||
$sdev_options .= ",p".$i."p".$p.",m".$i.",-,DUP,*,+";
|
||||
}
|
||||
foreach (range(2, $pings) as $p) {
|
||||
$pings_options .= ',p'.$i.'p'.$p.',UN,+';
|
||||
$m_options .= ',p'.$i.'p'.$p.',+';
|
||||
$sdev_options .= ',p'.$i.'p'.$p.',m'.$i.',-,DUP,*,+';
|
||||
}
|
||||
|
||||
$rrd_options .= " CDEF:pings".$i."=".$pings .",p".$i."p1,UN". $pings_options . ",-";
|
||||
$rrd_options .= " CDEF:m".$i."=p".$i."p1".$m_options.",pings".$i.",/";
|
||||
$rrd_options .= " CDEF:sdev".$i."=p".$i."p1,m".$i.",-,DUP,*".$sdev_options.",pings".$i.",/,SQRT";
|
||||
$rrd_options .= ' CDEF:pings'.$i.'='.$pings.',p'.$i.'p1,UN'.$pings_options.',-';
|
||||
$rrd_options .= ' CDEF:m'.$i.'=p'.$i.'p1'.$m_options.',pings'.$i.',/';
|
||||
$rrd_options .= ' CDEF:sdev'.$i.'=p'.$i.'p1,m'.$i.',-,DUP,*'.$sdev_options.',pings'.$i.',/,SQRT';
|
||||
// end emulate Smokeping::calc_stddev
|
||||
|
||||
$rrd_options .= " CDEF:dmlow$i=dm$i,sdev$i,2,/,-";
|
||||
$rrd_options .= " CDEF:s2d$i=sdev$i";
|
||||
$rrd_options .= " AREA:dmlow$i";
|
||||
$rrd_options .= " AREA:s2d$i#".$colour."30::STACK";
|
||||
$rrd_options .= " AREA:s2d$i#".$colour.'30::STACK';
|
||||
$rrd_options .= " LINE1:dm$i#".$colour.":'$descr'";
|
||||
|
||||
# $rrd_options .= " LINE1:sdev$i#000000:$descr";
|
||||
|
||||
// $rrd_options .= " LINE1:sdev$i#000000:$descr";
|
||||
$rrd_options .= " VDEF:avmed$i=median$i,AVERAGE";
|
||||
$rrd_options .= " VDEF:avsd$i=sdev$i,AVERAGE";
|
||||
$rrd_options .= " CDEF:msr$i=median$i,POP,avmed$i,avsd$i,/";
|
||||
@@ -101,5 +96,3 @@ if($src['hostname'] == $config['own_hostname'])
|
||||
$rrd_options .= " GPRINT:avmsr$i:'%5.1lf%s\\l'";
|
||||
|
||||
$i++;
|
||||
|
||||
?>
|
||||
|
Reference in New Issue
Block a user