39 lines
637 B
PHP

<?php
/**
* Observium
*
* This file is part of Observium.
*
* @package observium
* @subpackage graphs
* @copyright (C) Adam Armstrong
*
*/
$scale_min = 0;
include_once($config['html_dir'] . "/includes/graphs/common.inc.php");
$drbd_rrd = get_rrd_path($device, "app-drbd-" . $app['app_instance'] . ".rrd");
if (rrd_is_file($drbd_rrd)) {
$rrd_filename = $drbd_rrd;
}
$ds = "oos";
$colour_area = "CDEB8B";
$colour_line = "006600";
$colour_area_max = "FFEE99";
$graph_max = 1;
$multiplier = 1000;
$unit_text = "Bytes";
include($config['html_dir'] . "/includes/graphs/generic_simplex.inc.php");
// EOF