mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* massive inlines * fix style and wtf * remove rrdtool.inc.php include * fix CommonFunctions namespace issues * looking for missing class space, fix undefined class issues * style fixes
26 lines
474 B
PHP
26 lines
474 B
PHP
<?php
|
|
|
|
$ds_in = 'apply_ms';
|
|
$ds_out = 'commit_ms';
|
|
|
|
$in_text = 'Apply';
|
|
$out_text = 'Commit';
|
|
|
|
$ceph_osd_rrd = ceph_rrd('osd');
|
|
|
|
if (Rrd::checkRrdExists($ceph_osd_rrd)) {
|
|
$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';
|
|
|
|
require 'includes/html/graphs/generic_duplex.inc.php';
|