2017-03-03 12:55:33 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$name = 'squid';
|
|
|
|
|
$colours = 'mixed';
|
|
|
|
|
$unit_text = 'cpu%';
|
|
|
|
|
$unitlen = 10;
|
|
|
|
|
$bigdescrlen = 15;
|
|
|
|
|
$smalldescrlen = 15;
|
|
|
|
|
$dostack = 0;
|
|
|
|
|
$printtotal = 0;
|
|
|
|
|
$addarea = 1;
|
|
|
|
|
$transparency = 15;
|
|
|
|
|
|
2022-07-22 16:01:55 -05:00
|
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id]);
|
2017-03-03 12:55:33 -06:00
|
|
|
|
2021-03-28 17:25:30 -05:00
|
|
|
if (Rrd::checkRrdExists($rrd_filename)) {
|
2017-03-03 12:55:33 -06:00
|
|
|
$rrd_list = [
|
2020-09-21 15:40:17 +02:00
|
|
|
[
|
2017-03-03 12:55:33 -06:00
|
|
|
'filename' => $rrd_filename,
|
|
|
|
|
'descr' => 'cpu usage',
|
|
|
|
|
'ds' => 'cpuusage',
|
|
|
|
|
'colour' => '582a72',
|
2020-09-21 15:40:17 +02:00
|
|
|
],
|
2017-03-03 12:55:33 -06:00
|
|
|
];
|
|
|
|
|
} else {
|
|
|
|
|
echo "file missing: $rrd_filename";
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_v3_multiline.inc.php';
|