Skip to content

Commit

Permalink
Increase number of buckets for ingester_client_request_duration_seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
danielblando committed May 8, 2024
1 parent 09ea351 commit e9d42c9
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 e9d42c9

Please sign in to comment.