2009-10-28 23:34:13 +00:00
|
|
|
<?php
|
|
|
|
|
2009-11-07 02:30:38 +00:00
|
|
|
$scale_min = "0";
|
|
|
|
|
2010-08-01 14:37:36 +00:00
|
|
|
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename("bgp-" . $data['bgpPeerIdentifier'] . ".rrd");
|
2009-10-28 23:34:13 +00:00
|
|
|
|
2011-09-21 11:59:59 +00:00
|
|
|
$ds_in = "bgpPeerInUpdates";
|
|
|
|
$ds_out = "bgpPeerOutUpdates";
|
2009-10-28 23:34:13 +00:00
|
|
|
|
|
|
|
$colour_area_in = "AA66AA";
|
|
|
|
$colour_line_in = "330033";
|
|
|
|
$colour_area_out = "FF6600";
|
|
|
|
$colour_line_out = "FFDD88";
|
|
|
|
|
|
|
|
$colour_area_in_max = "FFEE99";
|
|
|
|
$colour_area_out_max = "FF7711";
|
|
|
|
|
|
|
|
$graph_max = 1;
|
|
|
|
|
|
|
|
$unit_text = "Updates";
|
|
|
|
|
2010-07-24 19:24:07 +00:00
|
|
|
include("includes/graphs/generic_duplex.inc.php");
|
2009-10-28 23:34:13 +00:00
|
|
|
|
|
|
|
?>
|