Files

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

23 lines
436 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, 'df', $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 = 'objects';
$colour_area = 'EEEEEE';
$colour_line = '36393D';
$colour_area_max = 'FFEE99';
$unit_text = 'Objects';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';