Skip to content

Commit

Permalink
Increase number of buckets for ingester_client_request_duration_secon…
Browse files Browse the repository at this point in the history
…ds (#5937)

Signed-off-by: Daniel Deluiggi <[email protected]>
  • Loading branch information
danielblando authored May 9, 2024
1 parent 3b11036 commit db10d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ingester/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var ingesterClientRequestDuration = promauto.NewHistogramVec(prometheus.Histogra
Namespace: "cortex",
Name: "ingester_client_request_duration_seconds",
Help: "Time spent doing Ingester requests.",
Buckets: prometheus.ExponentialBuckets(0.001, 4, 6),
Buckets: prometheus.ExponentialBuckets(0.001, 4, 7),
}, []string{"operation", "status_code"})
var ingesterClientInflightPushRequests = promauto.NewGaugeVec(prometheus.GaugeOpts{
Namespace: "cortex",
Expand Down

0 comments on commit db10d87

Please sign in to comment.