We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f4254 commit 5033033Copy full SHA for 5033033
lading/src/observer/linux/procfs.rs
@@ -141,7 +141,7 @@ impl Sampler {
141
142
gauge!("total_rss_bytes").set(aggr.rss as f64);
143
gauge!("total_pss_bytes").set(aggr.pss as f64);
144
- gauge!("processes_found").set(processes_found as f64);
+ gauge!("processes_found").set(f64::from(processes_found));
145
146
// If we skipped any processes, log a warning.
147
if !pids_skipped.is_empty() {
0 commit comments