2010-07-25 18:26:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
2011-06-01 09:45:47 +00:00
|
|
|
$scale_min = 0;
|
|
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/common.inc.php';
|
2010-07-25 18:26:31 +00:00
|
|
|
|
2022-07-22 16:01:55 -05:00
|
|
|
$apache_rrd = Rrd::name($device['hostname'], ['app', 'apache', $app->app_id]);
|
2010-07-25 18:26:31 +00:00
|
|
|
|
2021-03-28 17:25:30 -05:00
|
|
|
if (Rrd::checkRrdExists($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
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_simplex.inc.php';
|