Files
librenms-librenms/includes/html/graphs/application/squid_sysnumread.inc.php
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
633 B
PHP
Raw Normal View History

<?php
$name = 'squid';
$colours = 'mixed';
$unit_text = 'per second';
$unitlen = 10;
$bigdescrlen = 15;
$smalldescrlen = 15;
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_filename)) {
$rrd_list = [
2020-09-21 15:40:17 +02:00
[
'filename' => $rrd_filename,
'descr' => 'http io reads',
'ds' => 'sysnumreads',
'colour' => '582a72',
2020-09-21 15:40:17 +02:00
],
];
} else {
echo "file missing: $rrd_filename";
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_v3_multiline.inc.php';