Skip to content

Commit

Permalink
feat: add os type to extra telemetry data
Browse files Browse the repository at this point in the history
  • Loading branch information
brianp committed Feb 11, 2025
1 parent da9a9ee commit f51e7c3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src-tauri/src/telemetry_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,11 @@ async fn get_telemetry_data(
started.elapsed().as_secs().to_string(),
);

extra_data.insert(
"current_os".to_string(),
std::env::consts::OS.to_string(),
);

add_process_stats(
&mut extra_data,
stats_collector.get_p2pool_stats(),
Expand Down

0 comments on commit f51e7c3

Please sign in to comment.