Files
librenms-librenms/html/includes/graphs/application/apache_bytes.inc.php
T

25 lines
414 B
PHP
Raw Normal View History

2010-07-25 18:26:31 +00:00
<?php
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;
}
$rra = "kbyte";
$colour_area = "CDEB8B";
$colour_line = "006600";
$colour_area_max = "FFEE99";
$graph_max = 1;
$unit_text = "KByte/sec";
include("includes/graphs/generic_simplex.inc.php");
2011-03-17 14:27:03 +00:00
?>