We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c1a8e commit cf3b883Copy full SHA for cf3b883
pkg/metrics/client.go
@@ -32,8 +32,8 @@ var (
32
// "verb" and "url" labels. It is used for the rest client latency metrics.
33
requestLatency = prometheus.NewHistogramVec(
34
prometheus.HistogramOpts{
35
- Name: "rest_client_request_latency_seconds",
36
- Help: "Request latency in seconds. Broken down by verb and URL.",
+ Name: "rest_client_request_duration_seconds",
+ Help: "Request duration in seconds. Broken down by verb and URL.",
37
Buckets: prometheus.ExponentialBuckets(0.001, 2, 10),
38
},
39
[]string{"verb", "url"},
0 commit comments