2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
2016-07-07 01:33:43 -05:00
|
|
|
$rrd_filename = rrd_name($device['hostname'], 'netstats-tcp');
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$stats = array(
|
|
|
|
'tcpInSegs',
|
|
|
|
'tcpOutSegs',
|
|
|
|
'tcpActiveOpens',
|
|
|
|
'tcpPassiveOpens',
|
|
|
|
'tcpAttemptFails',
|
|
|
|
'tcpEstabResets',
|
|
|
|
'tcpRetransSegs',
|
|
|
|
);
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$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;
|
|
|
|
}
|
2011-09-18 22:55:29 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$colours = 'mixed';
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$nototal = 1;
|
2011-09-30 13:31:00 +00:00
|
|
|
$simple_rrd = 1;
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_multi_line.inc.php';
|