Skip to content

Instantly share code, notes, and snippets.

@evgenypim
Forked from pavel-odintsov/pps.sh
Last active November 3, 2015 11:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save evgenypim/c5b3c39f73d885d3861f to your computer and use it in GitHub Desktop.
Save evgenypim/c5b3c39f73d885d3861f to your computer and use it in GitHub Desktop.
pps.sh for habrahabr
#!/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/$IF/statistics/rx_packets)"
T1="$(<cat /sys/class/net/$IF/statistics/tx_packets)"
sleep $INTERVAL
R2="$(<cat /sys/class/net/$IF/statistics/rx_packets)"
T2="$(<cat /sys/class/net/$IF/statistics/tx_packets)"
TXPPS="$(expr $T2 - $T1)"
RXPPS="$(expr $R2 - $R1)"
echo "TX $IF: $TXPPS pkts/s RX $IF: $RXPPS pkts/s"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment