blob: 9314b81e5ae560c0207ff5bc780760cc2aa4b7be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
use std::{thread, time::Duration};
use sysinfo::{CpuExt, System, SystemExt};
fn main() {
let mut sys = System::new();
// Number of CPUs:
loop {
sys.refresh_cpu();
let cpu_usage: f32 = sys.cpus().iter().map(|cpu| cpu.cpu_usage()).sum();
println!(
"cpu|range:0-100|{:.0}",
cpu_usage / sys.cpus().iter().count() as f32
);
println!();
// Sleeping to give the system time to run for long
// enough to have useful information.
thread::sleep(Duration::from_secs(3));
}
}
|