Crates.io | ifstat-rs |
lib.rs | ifstat-rs |
version | 3.0.0 |
source | src |
created_at | 2024-07-31 06:50:20.976968 |
updated_at | 2024-08-03 22:06:18.412991 |
description | A tool to report network interface statistics. |
homepage | |
repository | https://github.com/spezifisch/ifstat-rs |
max_upload_size | |
id | 1320682 |
size | 82,735 |
ifstat-rs
is a straightforward and efficient Rust tool to report network interface stats, similar to ifstat.
/proc/net/dev
.To install ifstat-rs
, ensure you have Rust and Cargo installed.
Choose option A or B:
cargo install ifstat-rs
cargo build --release
sudo cp target/release/ifstat-rs /usr/local/bin/
ifstat-rs --version
ifstat-rs
-a
: Monitor all interfaces.-l
: Include loopback interfaces.-z
: Hide inactive interfaces where the counter stays zero.-i <interfaces>
: Specify interfaces to monitor, separated by commas (e.g., -i eth0,lo
).--list-interfaces
: List all interfaces, with their friendly names where supported (currently Windows).--first-measurement <seconds>
: Set delay before the first measurement (default is the same as --delay).<delay>
: Delay between updates in seconds (default is 1 second).<count>
: Number of updates before stopping (default is unlimited).By default, ifstat-rs shows all interfaces excluding "lo".
Default usage:
$ ifstat-rs
eth0
KB/s in KB/s out
8724.76 225.89
10356.68 259.95
13281.06 294.90
Monitor specific interfaces:
# Linux/Mac-style
ifstat-rs -i eth0,wlan1
# Windows-style
ifstat-rs -i "\DEVICE\TCPIP_{66963456-C690-4E4E-940B-E7C915B9A07D},\DEVICE\TCPIP_{97D92124-3AC3-45B5-8634-F6547F9676CE}"
Lookup list of interfaces, (on Windows: with Adapter Names where present):
$ ifstat-rs --list-interfaces
3 adapters:
\DEVICE\TCPIP_{66963456-C690-4E4E-940B-E7C915B9A07D} Ethernet
\DEVICE\TCPIP_{3CE6ABDA-3928-11EF-BFD9-806E6F6E6963} Loopback Pseudo-Interface 1
\DEVICE\TCPIP_{97D92124-3AC3-45B5-8634-F6547F9676CE} vEthernet (nat)
16 interfaces:
[...]
\DEVICE\TCPIP_{97D92124-3AC3-45B5-8634-F6547F9676CE} (vEthernet (nat))
\DEVICE\TCPIP_{66963456-C690-4E4E-940B-E7C915B9A07D} (Ethernet)
\DEVICE\TCPIP_{34DB3D4C-C1FC-4CDF-8BB2-9A7B1D40D640}
\DEVICE\TCPIP_{3CE6ABDA-3928-11EF-BFD9-806E6F6E6963} (Loopback Pseudo-Interface 1)
[...]
Monitor all interfaces, measure every second, for 10 seconds:
ifstat-rs -a 1 10
Include loopback interfaces:
ifstat-rs -l
Specify delay and count - first measure after 1 second, then every 60 seconds:
ifstat-rs -a --first-measurement 1 60
Run the tool with:
cargo run -- -a
This project is licensed under the MIT License - see the LICENSE file for details.
"This project has been generated with the assistance of ChatGPT. Please be aware that ChatGPT can make mistakes. It is important to review and verify all information provided by the tool." is what it says. Just so you know. Because I guess maybe all the bugs aren't my fault after all.