Files

26 lines
440 B
PHP
Raw Permalink Normal View History

2012-04-19 15:36:46 +00:00
<?php
$scale_min = 0;
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2012-04-19 15:36:46 +00:00
2020-09-21 15:40:17 +02:00
$drbd_rrd = rrd_name($device['hostname'], ['app', 'drbd', $app['app_instance']]);
2012-04-19 15:36:46 +00:00
if (rrdtool_check_rrd_exists($drbd_rrd)) {
2015-07-13 20:10:26 +02:00
$rrd_filename = $drbd_rrd;
2012-04-19 15:36:46 +00:00
}
2015-07-13 20:10:26 +02:00
$ds = 'oos';
2012-04-19 15:36:46 +00:00
2015-07-13 20:10:26 +02:00
$colour_area = 'CDEB8B';
$colour_line = '006600';
2012-04-19 15:36:46 +00:00
2015-07-13 20:10:26 +02:00
$colour_area_max = 'FFEE99';
2012-04-19 15:36:46 +00:00
2020-09-21 15:40:17 +02:00
$graph_max = 1;
2012-04-19 15:36:46 +00:00
$multiplier = 8;
2015-07-13 20:10:26 +02:00
$unit_text = 'Bytes';
2012-04-19 15:36:46 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';