From 3489d66a88387203f046f07a88667e1c16f16420 Mon Sep 17 00:00:00 2001 From: gonzalezzfelipe Date: Tue, 11 Jun 2024 11:04:52 -0300 Subject: [PATCH] Use correct value --- operator/src/metrics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator/src/metrics.rs b/operator/src/metrics.rs index 1c8f205..a7f9ed0 100644 --- a/operator/src/metrics.rs +++ b/operator/src/metrics.rs @@ -226,7 +226,7 @@ pub async fn run_metrics_collector(state: Arc) { .throughput_tier .clone() .unwrap_or("0".to_string()), - result.value, + total_exec_time, ); } }