#metrics #system-info #heim #psutil #stats #api-bindings

bin+lib sys_metrics

Cross-platform library to gather stats/information from the host

7 releases

0.2.7 Mar 24, 2024
0.2.6 Jun 12, 2022
0.2.5 Dec 18, 2021
0.2.4 Aug 11, 2021
0.1.40 Nov 28, 2020

#123 in Operating systems

Download history 28/week @ 2024-01-15 146/week @ 2024-01-29 35/week @ 2024-02-12 56/week @ 2024-02-19 515/week @ 2024-02-26 180/week @ 2024-03-04 58/week @ 2024-03-11 211/week @ 2024-03-18 133/week @ 2024-03-25 157/week @ 2024-04-01 75/week @ 2024-04-08 43/week @ 2024-04-15

544 downloads per month
Used in ztui

AGPL-3.0

86KB
2K SLoC

sys_metrics

Gather metrics from the host

AGPL License crates.io Docs.rs CI

sys_metrics is a WIP project intended to give an alternative to others tools which can be slower or provide too many useless informations. It will try to have at least the same functionality as psutil or heim.

It's a synchronous library which try to be freaking fast (maybe even the fastest) and as dependency-free as possible.

WIP Notes

sys_metrics in it's WIP stage will only support Linux and macOS. The structure is subject to change from version to version. If you have a comment about it or anything else feel free to open an issue.

Usage

Add the dependency to your Cargo.toml

[dependencies]
sys_metrics = "0.2"

Example of basic usage:

use sys_metrics::{cpu::*};

// This is just a very basic example of the CPU part.
// Check the doc, this crate can do much more.
fn main() {
    let cpufreq = get_cpufreq().unwrap();
    println!("CPU Speed: {:13}MHz\n", cpufreq as u64);

    let cpu_logical = get_logical_count().unwrap();
    let cpu_physical = get_physical_count().unwrap();

    println!("CPU Core: {:12}\nLogical processors: {}", cpu_physical, cpu_logical);

    let loadavg = get_loadavg().unwrap();
    println!("Load average: {:10} {} {}", loadavg.one, loadavg.five, loadavg.fifteen);
}

For a more complex example, check this crate in use here: speculare-client/src/harvest/data_harvest.rs.

Benchmarks

See BENCHMARKS for a comparison of sys_metrics with other crates.

 cargo bench

Supported targets

Target test
x86_64-apple-darwin
x86_64-unknown-linux-gnu

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Dependencies

~0.5–1.2MB
~28K SLoC