blob: 5a6dd084d51619f71d26f3b2befe12d6c932de9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
use std::{thread, time::Duration};
use sysinfo::{CpuExt, System, SystemExt};
pub fn cpu() {
let mut sys = System::new();
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));
}
}
|