37 lines
684 B
PHP
37 lines
684 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2023 Observium Limited
|
|
*
|
|
*/
|
|
|
|
$rrd_filename = get_rrd_path($device, "netscaler-stats-tcp.rrd");
|
|
|
|
$ds_in = "CurClientConn";
|
|
$ds_out = "CurServerConn";
|
|
|
|
$in_text = "Client";
|
|
$out_text = "Server";
|
|
|
|
$colour_area_in = "78c7eb";
|
|
$colour_line_in = "00519b";
|
|
|
|
$colour_area_out = "A9E558";
|
|
$colour_line_out = "4F8910";
|
|
|
|
$colour_area_in_max = "AAAAAA";
|
|
$colour_area_out_max = "AAAAAA";
|
|
|
|
$graph_max = 1;
|
|
$unit_text = "Connections";
|
|
|
|
include($config['html_dir'] . "/includes/graphs/generic_duplex.inc.php");
|
|
|
|
// EOF
|