Files

23 lines
450 B
PHP
Raw Permalink Normal View History

2009-10-28 23:34:13 +00:00
<?php
$scale_min = '0';
2009-11-07 02:30:38 +00:00
2020-09-21 15:40:17 +02:00
$rrd_filename = rrd_name($device['hostname'], ['bgp', $data['bgpPeerIdentifier']]);
2009-10-28 23:34:13 +00:00
2020-09-21 15:40:17 +02:00
$ds_in = 'bgpPeerInUpdates';
$ds_out = 'bgpPeerOutUpdates';
2009-10-28 23:34:13 +00:00
2020-09-21 15:40:17 +02:00
$colour_area_in = 'AA66AA';
$colour_line_in = '330033';
$colour_area_out = 'FF6600';
$colour_line_out = 'FFDD88';
2009-10-28 23:34:13 +00:00
2020-09-21 15:40:17 +02:00
$colour_area_in_max = 'FFEE99';
$colour_area_out_max = 'FF7711';
2009-10-28 23:34:13 +00:00
$graph_max = 1;
$unit_text = 'Updates';
2009-10-28 23:34:13 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_duplex.inc.php';