1 unstable release
0.1.0 | Sep 30, 2020 |
---|
#785 in Operating systems
22KB
549 lines
OS system statistics library for Rust
This is a library to get system metrics like cpu load and memory usage, inspired by go-osstat.
Cargo.toml
os_stat = "0.1"
Example
extern crate os_stat;
fn main() {
dbg!(os_stat::CPU::get());
}
Supported OS
Only Linux(>= 2.6.33)
TODOs
- Better error-handling
- Support macOS
- Support Windows
Dependencies
~43KB