Files

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

30 lines
685 B
PHP
Raw Permalink Normal View History

<?php
2020-09-21 15:40:17 +02:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
$scale_min = 0;
$colours = 'mixed';
$unit_text = ' ';
$unitlen = 10;
$bigdescrlen = 10;
$smalldescrlen = 10;
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
$rrd_filename = Rrd::name($device['hostname'], ['app', $app->app_type, $app->app_id, $vars['jail']]);
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' => 'Banned IPs',
'ds' => 'banned',
'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';