36 lines
722 B
PHP
36 lines
722 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
|
|
*
|
|
*/
|
|
|
|
$scale_min = "0";
|
|
|
|
$rrd_filename = get_rrd_path($device, "bgp-" . $data['bgpPeerRemoteAddr'] . ".rrd");
|
|
|
|
$ds_in = "bgpPeerInUpdates";
|
|
$ds_out = "bgpPeerOutUpdates";
|
|
|
|
$colour_area_in = "AA66AA90";
|
|
$colour_line_in = darken_color($colour_area_in, 1);
|
|
$colour_area_out = "FF660090";
|
|
$colour_line_out = darken_color($colour_area_out, 1);
|
|
|
|
$colour_area_in_max = "FFEE99";
|
|
$colour_area_out_max = "FF7711";
|
|
|
|
$graph_max = 1;
|
|
|
|
$unit_text = "Updates";
|
|
|
|
include($config['html_dir']."/includes/graphs/generic_duplex.inc.php");
|
|
|
|
// EOF
|