Files
librenms-librenms/html/includes/graphs/application/apache_bits.inc.php

26 lines
439 B
PHP
Raw Normal View History

<?php
$scale_min = 0;
2015-07-13 20:10:26 +02:00
require 'includes/graphs/common.inc.php';
$apache_rrd = rrd_name($device['hostname'], array('app', 'apache', $app['app_id']));
if (rrdtool_check_rrd_exists($apache_rrd)) {
2015-07-13 20:10:26 +02:00
$rrd_filename = $apache_rrd;
}
2015-07-13 20:10:26 +02:00
$ds = 'kbyte';
2015-07-13 20:10:26 +02:00
$colour_area = 'CDEB8B';
$colour_line = '006600';
2015-07-13 20:10:26 +02:00
$colour_area_max = 'FFEE99';
2015-07-13 20:10:26 +02:00
$graph_max = 1;
$multiplier = 8;
2015-07-13 20:10:26 +02:00
$unit_text = 'Kbps';
2015-07-13 20:10:26 +02:00
require 'includes/graphs/generic_simplex.inc.php';