Created
May 1, 2019 16:41
-
-
Save hvardhanx/073f8cebcd93028ffcf9f94c6ca9a8f4 to your computer and use it in GitHub Desktop.
Net packet drop per second
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!/bin/bash | |
INTERVAL="1" # update interval in seconds | |
if [ -z "$1" ]; then | |
echo | |
echo usage: $0 [network-interface] | |
echo | |
echo e.g. $0 eth0 | |
echo | |
echo shows packets-per-second | |
exit | |
fi | |
IF=$1 | |
while true | |
do | |
R1=`cat /sys/class/net/$1/statistics/rx_dropped` | |
T1=`cat /sys/class/net/$1/statistics/tx_dropped` | |
sleep $INTERVAL | |
R2=`cat /sys/class/net/$1/statistics/rx_dropped` | |
T2=`cat /sys/class/net/$1/statistics/tx_dropped` | |
TXPPS=`expr $T2 - $T1` | |
RXPPS=`expr $R2 - $R1` | |
echo "TX $1: $TXPPS pkts/s RX $1: $RXPPS pkts/s" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment