Files

25 lines
391 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
2015-11-10 11:44:30 +01:00
$ceph_pool_rrd = ceph_rrd('pool');
2015-11-10 11:06:03 +01:00
if (rrdtool_check_rrd_exists($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';
2020-09-21 15:40:17 +02:00
$graph_max = 1;
2015-11-10 11:06:03 +01:00
$unit_text = 'Operations';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';