From a84942e8201369dce5be264efbdcd0d9f6b1d12e Mon Sep 17 00:00:00 2001 From: John Howard Date: Thu, 8 Jan 2026 09:48:37 -0800 Subject: [PATCH] metrics: fix dns histogram --- src/dns/metrics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dns/metrics.rs b/src/dns/metrics.rs index 03d80ab244..fc454531ac 100644 --- a/src/dns/metrics.rs +++ b/src/dns/metrics.rs @@ -57,7 +57,7 @@ impl Metrics { ); let forwarded_duration = Family::::new_with_constructor(|| { - Histogram::new(vec![0.005f64, 0.001, 0.01, 0.1, 1.0, 5.0]) + Histogram::new(vec![0.0005f64, 0.001, 0.01, 0.1, 1.0, 5.0]) }); registry.register_with_unit( "dns_upstream_request_duration",