Files

27 lines
445 B
PHP
Raw Permalink Normal View History

2012-05-09 12:20:07 +00:00
<?php
$scale_min = 0;
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2012-05-09 12:20:07 +00:00
$agent_rrd = rrd_name($device['hostname'], 'agent');
2012-05-09 12:20:07 +00:00
if (rrdtool_check_rrd_exists($agent_rrd)) {
2015-07-11 13:42:14 +10:00
$rrd_filename = $agent_rrd;
2012-05-09 12:20:07 +00:00
}
$ds = 'time';
2012-05-09 12:20:07 +00:00
$colour_area = 'EEEEEE';
$colour_line = '36393D';
2012-05-09 12:20:07 +00:00
$colour_area_max = 'FFEE99';
2012-05-09 12:20:07 +00:00
2020-09-21 15:40:17 +02:00
$graph_max = 1;
$multiplier = 1000;
$multiplier_action = '/';
2012-05-09 12:20:07 +00:00
$unit_text = 'Seconds';
2012-05-09 12:20:07 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';