mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Fix coding style part 2
This commit is contained in:
@@ -1,19 +1,17 @@
|
||||
<?php
|
||||
|
||||
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/ucd_ssRawInterrupts.rrd";
|
||||
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/ucd_ssRawInterrupts.rrd';
|
||||
|
||||
$ds = "value";
|
||||
$ds = 'value';
|
||||
|
||||
$colour_area = "EEBBBB";
|
||||
$colour_line = "CC0000";
|
||||
$colour_area = 'EEBBBB';
|
||||
$colour_line = 'CC0000';
|
||||
|
||||
$colour_area_max = "cc9999";
|
||||
$colour_area_max = 'cc9999';
|
||||
|
||||
#$graph_max = 1;
|
||||
// $graph_max = 1;
|
||||
$scale_min = 0;
|
||||
|
||||
$unit_text = "Interrupts/s";
|
||||
$unit_text = 'Interrupts/s';
|
||||
|
||||
include("includes/graphs/generic_simplex.inc.php");
|
||||
|
||||
?>
|
||||
require 'includes/graphs/generic_simplex.inc.php';
|
||||
|
||||
Reference in New Issue
Block a user