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) }