Files

29 lines
613 B
PHP
Raw Permalink Normal View History

2020-02-12 08:26:02 +01:00
<?php
2020-09-21 15:40:17 +02:00
$unitlen = 10;
$bigdescrlen = 9;
2020-02-12 08:26:02 +01:00
$smalldescrlen = 9;
2020-09-21 15:40:17 +02:00
$dostack = 0;
$printtotal = 0;
$unit_text = 'Changes';
$colours = 'psychedelic';
$rrd_list = [];
2020-02-12 08:26:02 +01:00
2020-09-21 15:40:17 +02:00
$rrd_filename = rrd_name($device['hostname'], ['app', 'puppet-agent', $app['app_id'], 'changes']);
$array = [
2020-02-12 08:26:02 +01:00
'total',
2020-09-21 15:40:17 +02:00
];
2020-02-12 08:26:02 +01:00
if (rrdtool_check_rrd_exists($rrd_filename)) {
foreach ($array as $ds) {
2020-09-21 15:40:17 +02:00
$rrd_list[] = [
2020-02-12 08:26:02 +01:00
'filename' => $rrd_filename,
'descr' => $ds,
'ds' => $ds,
2020-09-21 15:40:17 +02:00
];
2020-02-12 08:26:02 +01:00
}
} else {
echo "file missing: $file";
}
require 'includes/html/graphs/generic_multi_line_exact_numbers.inc.php';