Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
454 B
PHP
Raw Permalink Normal View History

2015-11-10 11:06:03 +01:00
<?php
$scale_min = 0;
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2015-11-10 11:06:03 +01:00
$ceph_pool_rrd = Rrd::name($device['hostname'], ['app', 'ceph', $app->app_id, 'pool', $vars['pool']]);
2015-11-10 11:06:03 +01:00
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($ceph_pool_rrd)) {
2015-11-10 11:06:03 +01:00
$rrd_filename = $ceph_pool_rrd;
}
$ds = 'ops';
$colour_area = 'EEEEEE';
$colour_line = '36393D';
$colour_area_max = 'FFEE99';
$graph_max = 1;
$unit_text = 'Operations';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';