From 8fccbda5739d3b9f4d41724e4d6a8d8253c815a3 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Fri, 17 Apr 2026 14:50:28 -0700 Subject: [PATCH] Extend Fly proxy latency histogram buckets to 60s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previous max bucket was 10s — all slower requests collapsed into +Inf, making p50/p90/p99 unreadable during the Forgejo archive DoS. Co-Authored-By: Claude Opus 4.6 (1M context) --- fly/alloy.river | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fly/alloy.river b/fly/alloy.river index 06ad977..c504247 100644 --- a/fly/alloy.river +++ b/fly/alloy.river @@ -61,7 +61,7 @@ loki.process "nginx" { name = "flyio_nginx_http_request_duration_seconds" description = "HTTP request latency in seconds." source = "request_time" - buckets = [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10] + buckets = [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10, 15, 20, 30, 45, 60] } }