1<?php
2
3$scale_min = 0;
4
5require 'includes/html/graphs/common.inc.php';
6
7$drbd_rrd = Rrd::name($device['hostname'], ['app', 'drbd', $app['app_instance']]);
8
9if (Rrd::checkRrdExists($drbd_rrd)) {
10    $rrd_filename = $drbd_rrd;
11}
12
13$ds_in = 'dr';
14$ds_out = 'dw';
15
16$multiplier = '8';
17$format = 'bytes';
18
19require 'includes/html/graphs/generic_data.inc.php';
20