2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
2010-08-01 00:38:01 +00:00
|
|
|
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename($port['ifIndex'] . ".rrd");
|
2009-10-27 13:04:16 +00:00
|
|
|
|
|
|
|
$rra_in = "INERRORS";
|
|
|
|
$rra_out = "OUTERRORS";
|
|
|
|
|
|
|
|
$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;
|
|
|
|
|
2009-11-20 00:36:42 +00:00
|
|
|
$unit_text = "Errors";
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-07-24 19:24:07 +00:00
|
|
|
include("includes/graphs/generic_duplex.inc.php");
|
2009-10-27 13:04:16 +00:00
|
|
|
|
|
|
|
?>
|