From d329bfdc97d390c94c9889eecc90255731bea607 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 16 Oct 2023 15:07:20 -0700 Subject: [PATCH] start at 60 seconds instead of 1. servers are often behind and we want these to stand out --- latency/src/ewma.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/latency/src/ewma.rs b/latency/src/ewma.rs index 5b47a38c..e2b7d7e4 100644 --- a/latency/src/ewma.rs +++ b/latency/src/ewma.rs @@ -54,7 +54,7 @@ impl Default for EwmaLatency { let span = 10.0; // TODO: what should the defautt start be? - let start = 1.0; + let start = 60.0; Self::new(span, start) }