2 releases

Uses old Rust 2015

0.1.1 Sep 2, 2018
0.1.0 Aug 29, 2018

#587 in Operating systems

Download history 19/week @ 2023-11-20 22/week @ 2023-11-27 14/week @ 2023-12-04 70/week @ 2023-12-11 42/week @ 2023-12-18 22/week @ 2023-12-25 40/week @ 2024-01-08 24/week @ 2024-01-15 6/week @ 2024-01-22 3/week @ 2024-02-05 4/week @ 2024-02-12 27/week @ 2024-02-19 32/week @ 2024-02-26 52/week @ 2024-03-04

116 downloads per month

MIT/Apache

19KB
396 lines

This library provides methods for getting the percentage of cpu time spent idle, a.k.a. cpu usage.

It follows the structure of std::time, since you can only work with a difference between 2 fixed points in time. Cpu usage and a specific instant is either 0 or 1 (per core), the value of interest is the proportion of cpu cycles spent not idle over a given period.

Examples

extern crate cpu_monitor;

use std::io;
use std::time::Duration;

use cpu_monitor::CpuInstant;

fn main() -> Result<(), io::Error> {
    let start = CpuInstant::now()?;
    std::thread::sleep(Duration::from_millis(100));
    let end = CpuInstant::now()?;
    let duration = end - start;
    println!("cpu: {:.0}%", duration.non_idle() * 100.);
    Ok(())
}

Dependencies

~0–1.2MB