1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# netrs
A simple console program to show network interface statistics.
Pull requests welcome.
# usage
It works best in an 80x24 terminal.
You'll see something that looks a bit like this:
```
interface in out | in/sec | out/sec | in/min | out/min
docker0 0 0 | 0 | 0 | 0 | 0
eth0 765 MiB 678 MiB | 41 KiB | 591 KiB | 2 MiB | 29 MiB
lo 806 MiB 806 MiB | 0 | 0 | 0 | 0
total 1 GiB 1 GiB | 41 KiB | 591 KiB | 2 MiB | 29 MiB
###
### # #
#### # # # #
#### ## # ## # ## # ## ######## ##
######## ## ###### ## ###### # ## ########## #####
############ ####### ##### ######## ## ########## #######
############ ####### ############################# ########
###########################################################
###########################################################
```
netr will remain running until you quit using ctrl-c.
|