2010-08-01 00:49:12 +00:00
|
|
|
<?php
|
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
global $config;
|
2010-08-01 00:49:12 +00:00
|
|
|
|
2011-10-07 19:48:15 +00:00
|
|
|
$graphs = array('apache_bits' => 'Traffic',
|
|
|
|
'apache_hits' => 'Hits',
|
2010-08-01 00:49:12 +00:00
|
|
|
'apache_cpu' => 'CPU Utilisation',
|
|
|
|
'apache_scoreboard' => 'Scoreboard Statistics');
|
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
foreach ($graphs as $key => $text)
|
|
|
|
{
|
2010-08-01 00:49:12 +00:00
|
|
|
$graph_type = "apache_scoreboard";
|
|
|
|
|
|
|
|
$graph_array['height'] = "100";
|
|
|
|
$graph_array['width'] = "215";
|
2012-05-06 18:38:11 +00:00
|
|
|
$graph_array['to'] = $config['time']['now'];
|
2010-08-01 00:49:12 +00:00
|
|
|
$graph_array['id'] = $app['app_id'];
|
|
|
|
$graph_array['type'] = "application_".$key;
|
|
|
|
|
|
|
|
echo('<h3>'.$text.'</h3>');
|
|
|
|
|
|
|
|
echo("<tr bgcolor='$row_colour'><td colspan=5>");
|
|
|
|
|
2012-04-26 16:49:38 +00:00
|
|
|
include("includes/print-graphrow.inc.php");
|
2010-08-01 00:49:12 +00:00
|
|
|
|
|
|
|
echo("</td></tr>");
|
|
|
|
}
|
|
|
|
|
2011-10-07 19:48:15 +00:00
|
|
|
?>
|