Files

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

26 lines
541 B
PHP
Raw Permalink Normal View History

2015-11-10 11:06:03 +01:00
<?php
$ds_in = 'apply_ms';
$ds_out = 'commit_ms';
$in_text = 'Apply';
$out_text = 'Commit';
$ceph_osd_rrd = Rrd::name($device['hostname'], ['app', 'ceph', $app->app_id, 'osd', $vars['osd']]);
2015-11-10 11:06:03 +01:00
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($ceph_osd_rrd)) {
2015-11-10 11:06:03 +01:00
$rrd_filename = $ceph_osd_rrd;
}
$colour_area_in = 'FF3300';
$colour_line_in = 'FF0000';
$colour_area_out = 'FF6633';
$colour_line_out = 'CC3300';
$colour_area_in_max = 'FF6633';
$colour_area_out_max = 'FF9966';
$unit_text = 'Miliseconds';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_duplex.inc.php';