2017-02-24 11:50:33 -06:00
|
|
|
<?php
|
2020-09-21 15:40:17 +02:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/common.inc.php';
|
2017-02-24 11:50:33 -06:00
|
|
|
$scale_min = 0;
|
|
|
|
|
$colours = 'mixed';
|
|
|
|
|
$unit_text = ' ';
|
|
|
|
|
$unitlen = 10;
|
|
|
|
|
$bigdescrlen = 10;
|
|
|
|
|
$smalldescrlen = 10;
|
|
|
|
|
$dostack = 0;
|
|
|
|
|
$printtotal = 0;
|
|
|
|
|
$addarea = 1;
|
|
|
|
|
$transparency = 15;
|
|
|
|
|
|
2022-07-22 16:01:55 -05:00
|
|
|
$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)) {
|
2017-02-24 11:50:33 -06:00
|
|
|
$rrd_list = [
|
2020-09-21 15:40:17 +02:00
|
|
|
[
|
2017-02-24 11:50:33 -06:00
|
|
|
'filename' => $rrd_filename,
|
|
|
|
|
'descr' => 'Banned IPs',
|
|
|
|
|
'ds' => 'banned',
|
|
|
|
|
'colour' => '582A72',
|
2020-09-21 15:40:17 +02:00
|
|
|
],
|
2017-02-24 11:50: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';
|