From ea071ffa7690d203ea298888caa0367157f1f7c1 Mon Sep 17 00:00:00 2001 From: Julie Tibshirani Date: Mon, 21 Oct 2024 11:28:10 -0700 Subject: [PATCH] Expand upper range on indexing delay metric --- cmd/zoekt-sourcegraph-indexserver/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/zoekt-sourcegraph-indexserver/main.go b/cmd/zoekt-sourcegraph-indexserver/main.go index ebed6bd9..187dbb95 100644 --- a/cmd/zoekt-sourcegraph-indexserver/main.go +++ b/cmd/zoekt-sourcegraph-indexserver/main.go @@ -92,7 +92,7 @@ var ( metricIndexingDelay = promauto.NewHistogramVec(prometheus.HistogramOpts{ Name: "index_indexing_delay_seconds", Help: "A histogram of durations from when an index job is added to the queue, to the time it completes.", - Buckets: prometheus.ExponentialBuckets(60, 2, 12), // 1m -> ~3 days + Buckets: prometheus.ExponentialBuckets(60, 2, 14), // 1 minute -> 5.5 days }, []string{ "state", // state is an indexState "name", // the name of the repository that was indexed