39 lines
832 B
PHP
39 lines
832 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
|
|
*
|
|
*/
|
|
|
|
$rrd_filename = get_rrd_path($device, "netstats-tcp.rrd");
|
|
|
|
$stats = array('tcpActiveOpens','tcpPassiveOpens','tcpAttemptFails','tcpEstabResets','tcpRetransSegs');
|
|
|
|
$i=0;
|
|
foreach ($stats as $stat)
|
|
{
|
|
$i++;
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
|
$rrd_list[$i]['descr'] = str_replace("tcp", "", $stat);
|
|
$rrd_list[$i]['ds'] = $stat;
|
|
if (strpos($stat, "Out") !== FALSE || strpos($stat, "Retrans") !== FALSE || strpos($stat, "Attempt") !== FALSE)
|
|
{
|
|
$rrd_list[$i]['invert'] = TRUE;
|
|
}
|
|
}
|
|
|
|
$colours='mixed';
|
|
|
|
$nototal = 1;
|
|
$simple_rrd = 1;
|
|
|
|
include($config['html_dir']."/includes/graphs/generic_multi_line.inc.php");
|
|
|
|
?>
|