2010-07-25 18:26:31 +00:00
|
|
|
<?php
|
|
|
|
|
2011-06-01 09:45:47 +00:00
|
|
|
$scale_min = 0;
|
|
|
|
|
2010-07-25 18:26:31 +00:00
|
|
|
include("includes/graphs/common.inc.php");
|
|
|
|
|
2010-08-01 14:17:06 +00:00
|
|
|
$apache_rrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-apache-".$app['app_id'].".rrd";
|
2010-07-25 18:26:31 +00:00
|
|
|
|
2011-03-17 14:27:03 +00:00
|
|
|
if (is_file($apache_rrd))
|
|
|
|
{
|
2010-07-25 18:26:31 +00:00
|
|
|
$rrd_filename = $apache_rrd;
|
|
|
|
}
|
|
|
|
|
2011-09-21 11:59:59 +00:00
|
|
|
$ds = "kbyte";
|
2010-07-25 18:26:31 +00:00
|
|
|
|
|
|
|
$colour_area = "CDEB8B";
|
|
|
|
$colour_line = "006600";
|
|
|
|
|
|
|
|
$colour_area_max = "FFEE99";
|
|
|
|
|
|
|
|
$graph_max = 1;
|
2011-10-07 19:48:15 +00:00
|
|
|
$multiplier = 8;
|
2010-07-25 18:26:31 +00:00
|
|
|
|
2011-10-07 19:48:15 +00:00
|
|
|
|
|
|
|
$unit_text = "Kbps";
|
2010-07-25 18:26:31 +00:00
|
|
|
|
|
|
|
include("includes/graphs/generic_simplex.inc.php");
|
|
|
|
|
2011-06-01 09:45:47 +00:00
|
|
|
?>
|