Files

52 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2010-10-31 20:24:21 +00:00
<?php
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
$rrd_filename = rrd_name($device['hostname'], array('app', 'mysql', $app['app_id']));
$array = array(
'MaCs' => array(
'descr' => 'Max Connections',
'colour' => '22FF22',
),
'MUCs' => array(
'descr' => 'Max Used Connections',
'colour' => '0022FF',
),
'ACs' => array(
'descr' => 'Aborted Clients',
'colour' => 'FF0000',
),
'AdCs' => array(
'descr' => 'Aborted Connects',
'colour' => '0080C0',
),
'TCd' => array(
'descr' => 'Threads Connected',
'colour' => 'FF0000',
),
'Cs' => array(
'descr' => 'New Connections',
'colour' => '0080C0',
),
);
2011-09-21 13:01:28 +00:00
$i = 0;
if (rrdtool_check_rrd_exists($rrd_filename)) {
2017-02-24 15:22:15 +00:00
foreach ($array as $ds => $var) {
$rrd_list[$i]['filename'] = $rrd_filename;
2017-02-24 15:22:15 +00:00
$rrd_list[$i]['descr'] = $var['descr'];
$rrd_list[$i]['ds'] = $ds;
2017-02-24 15:22:15 +00:00
// $rrd_list[$i]['colour'] = $var['colour'];
$i++;
}
2016-08-18 20:28:22 -05:00
} else {
echo "file missing: $file";
}
$colours = 'mixed';
2011-09-21 13:01:28 +00:00
$nototal = 1;
$unit_text = 'Connections';
2011-09-21 13:01:28 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_line.inc.php';