Files
librenms-librenms/html/includes/graphs/diskio/ops.inc.php
T

21 lines
326 B
PHP
Raw Normal View History

2010-06-20 11:46:40 +00:00
<?php
$rra_in = "reads";
$rra_out = "writes";
$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";
$graph_max = 1;
2011-03-04 17:37:36 +00:00
$unit_text = "Ops/sec";
2010-06-20 11:46:40 +00:00
include("includes/graphs/generic_duplex.inc.php");
2010-06-20 11:46:40 +00:00
2011-05-13 13:27:54 +00:00
?>