mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
Merge pull request #7 from laciferin2024/feat/add-mem-free
feat/tauri: add mem free, cached
This commit is contained in:
commit
98e99db260
4
.gitignore
vendored
4
.gitignore
vendored
@ -8,3 +8,7 @@ node_modules
|
||||
!.env.example
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
|
||||
## Jetbrains
|
||||
.idea/
|
||||
.run/
|
@ -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],
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user