rename cbgp_prefixes to prefixes, as this will be used for more than cisco-bgp-mib now, and link directly to the bgp tab from the general bgp overview when you click on the device. overloaded generate_device_link, the day/time attributes were never used in any page yet

git-svn-id: http://www.observium.org/svn/observer/trunk@1740 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans
2010-11-24 14:25:03 +00:00
parent 79b4e6f114
commit d411f28c33
4 changed files with 7 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
<?php
include("includes/graphs/common.inc.php");
$scale_min = "0";
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/". safename("cbgp-" . $data['bgpPeerIdentifier'] . ".".$_GET['afi'].".".$_GET['safi'].".rrd");
$rra = "AcceptedPrefixes";
$colour_area = "AA66AA";
$colour_line = "FFDD88";
$colour_area_max = "FFEE99";
$graph_max = 1;
$unit_text = "Prefixes";
include("includes/graphs/generic_simplex.inc.php");
?>