We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b32f6eb commit 7099c36Copy full SHA for 7099c36
src/server/metrics.rs
@@ -98,6 +98,10 @@ impl Metrics {
98
self.crater_completed_jobs_total
99
.remove_label_values(&[experiment])?;
100
101
+ // Clear out all values from the progress report to avoid indefinitely retaining experiment
102
+ // metrics.
103
+ self.crater_progress_report.reset();
104
+
105
Ok(())
106
}
107
0 commit comments