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 = "INUCASTPKTS";
|
|
|
|
$rra_out = "OUTUCASTPKTS";
|
|
|
|
|
|
|
|
$colour_area_in = "AA66AA";
|
|
|
|
$colour_line_in = "330033";
|
|
|
|
$colour_area_out = "FFDD88";
|
|
|
|
$colour_line_out = "FF6600";
|
|
|
|
|
|
|
|
$colour_area_in_max = "cc88cc";
|
|
|
|
$colour_area_out_max = "FFefaa";
|
|
|
|
|
|
|
|
$graph_max = 1;
|
2009-11-19 17:31:57 +00:00
|
|
|
$unit_text = "Packets";
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2010-08-02 22:50:42 +00:00
|
|
|
#include("includes/graphs/generic_duplex.inc.php");
|
2009-10-27 13:04:16 +00:00
|
|
|
|
|
|
|
?>
|