2017-12-13 16:13:24 +13: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';
|
2020-09-21 15:40:17 +02:00
|
|
|
$i = 0;
|
|
|
|
|
$scale_min = 0;
|
|
|
|
|
$nototal = 1;
|
|
|
|
|
$unit_text = 'Per Sec.';
|
|
|
|
|
$rrd_filename = rrd_name($device['hostname'], ['app', 'freeradius-queue', $app['app_id']]);
|
|
|
|
|
$fr_queue_array = [
|
2017-12-13 16:13:24 +13:00
|
|
|
'len_internal' => 'Len Internal',
|
|
|
|
|
'len_proxy' => 'Len Proxy',
|
|
|
|
|
'len_auth' => 'Len Auth',
|
|
|
|
|
'len_acct' => 'Len Acct',
|
|
|
|
|
'len_detail' => 'Len Detail',
|
|
|
|
|
'pps_in' => 'PPS In',
|
2020-09-21 15:40:17 +02:00
|
|
|
'pps_out' => 'PPS Out',
|
|
|
|
|
];
|
|
|
|
|
$colours = 'mixed';
|
|
|
|
|
$rrd_list = [];
|
2017-12-13 16:13:24 +13:00
|
|
|
if (rrdtool_check_rrd_exists($rrd_filename)) {
|
|
|
|
|
foreach ($fr_queue_array as $ds => $descr) {
|
|
|
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
2020-09-21 15:40:17 +02:00
|
|
|
$rrd_list[$i]['descr'] = $descr;
|
|
|
|
|
$rrd_list[$i]['ds'] = $ds;
|
2017-12-13 16:13:24 +13:00
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
echo "file missing: $rrd_filename";
|
|
|
|
|
}
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_multi_line.inc.php';
|