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

25 lines
409 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 = "cpu";
$colour_area = "AA66AA";
$colour_line = "FFDD88";
$colour_area_max = "FFEE99";
$graph_max = 1;
$unit_text = "% Used";
include("includes/graphs/generic_simplex.inc.php");
2011-03-17 14:27:03 +00:00
?>