2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/tcp/tcp-retransmissions

46 lines
728 B
Plaintext
Raw Normal View History

#!/bin/sh
# tcp_retries revision 2 (Feb 2012)
#
# TCP retransmission rate. Useful for network debugging.
#
# Required privileges: none
#
# OS: Linux with procfs
#
# Author: Artem Sheremet <dot.doom@gmail.com>
#
#%# family=auto
#%# capabilities=autoconf
TCPSTAT=/proc/net/tcp
2011-10-23 00:01:39 +02:00
case $1 in
autoconf)
[ -r $TCPSTAT -o -r ${TCPSTAT}6 ] && echo "yes" || echo "no"
;;
2011-10-23 00:01:39 +02:00
config)
cat <<CONFIG
2011-10-23 00:01:39 +02:00
graph_title TCP retransmissions
graph_vlabel Rate, retrs/sockets
graph_category network
graph_info TCP sockets retransmission counters from $TCPSTAT
2011-10-23 00:01:39 +02:00
rate.label Retransmission rate
rate.draw LINE2
rate.min 0
CONFIG
;;
2011-10-23 00:01:39 +02:00
esac
cat /proc/net/tcp* | awk '
{
TOTAL += $7;
COUNT++;
}
END {
printf "rate.value %.3f\n", TOTAL/COUNT
}
'