Skip to content

Commit 6002ec4

Browse files
Update latency metric buckets (#65)
1 parent 0a6e981 commit 6002ec4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metrics/metrics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var (
2525
requestLatency = prometheus.NewHistogramVec(prometheus.HistogramOpts{
2626
Name: "client_go_request_duration_seconds",
2727
Help: "Request latency in seconds. Broken down by verb, group, version, kind, and subresource.",
28-
Buckets: prometheus.ExponentialBuckets(0.001, 2, 10),
28+
Buckets: prometheus.ExponentialBuckets(0.001, 1.5, 20),
2929
}, []string{"verb", "group", "version", "kind", "subresource"})
3030
)
3131

0 commit comments

Comments
 (0)