Merge pull request #7 from laciferin2024/feat/add-mem-free

feat/tauri: add mem free, cached
This commit is contained in:
Abdenasser Elidrissi 2024-11-05 00:31:51 +01:00 committed by GitHub
commit 98e99db260
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 0 deletions

4
.gitignore vendored
View File

@ -8,3 +8,7 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
## Jetbrains
.idea/
.run/

BIN
bun.lockb Executable file

Binary file not shown.

View File

@ -35,6 +35,8 @@ struct SystemStats {
cpu_usage: Vec<f32>,
memory_total: u64,
memory_used: u64,
memory_free:u64,
memory_cached: u64,
uptime: u64,
load_avg: [f64; 3],
}
@ -83,11 +85,15 @@ async fn get_processes(state: State<'_, AppState>) -> Result<(Vec<ProcessInfo>,
})
.collect();
let memory_cached = sys.available_memory() - sys.free_memory();
let load_avg = sys.load_average();
let system_stats = SystemStats {
cpu_usage: sys.cpus().iter().map(|cpu| cpu.cpu_usage()).collect(),
memory_total: sys.total_memory(),
memory_used: sys.used_memory(),
memory_free: sys.available_memory(),
memory_cached,//FIXME: get accurate value
uptime: sys.uptime(),
load_avg: [load_avg.one, load_avg.five, load_avg.fifteen],
};