Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrrnn committed Feb 26, 2025
1 parent ef4e229 commit 3d4abab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/telemetry_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ async fn get_telemetry_data(
let memory_utilization = (system.used_memory() as f64 / system.total_memory() as f64) * 100.0;
extra_data.insert(
"memory_utilization".to_string(),
memory_utilization.round().to_string()
memory_utilization.round().to_string(),
);
extra_data.insert("free_memory".to_string(), system.free_memory().to_string());
if let Some(core_count) = system.physical_core_count() {
Expand Down

0 comments on commit 3d4abab

Please sign in to comment.