summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2021-02-04 08:20:32 -0800
committerGitHub <noreply@github.com>2021-02-04 08:20:32 -0800
commiteb549af38cde9d04c8aa6b3bf04679d6dd5ac529 (patch)
treea722a70fa433a27503ad31be3f9065a6d28bfbcd
parent81ece459498964d18159d00948bd4edb849bc8c1 (diff)
parentf7f69ff66a7391c0e84a8676ad695e2abf4673ff (diff)
Merge pull request #5464 from logicalhan/patch-1
Update instrumentation.md
-rw-r--r--contributors/devel/sig-instrumentation/instrumentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/sig-instrumentation/instrumentation.md b/contributors/devel/sig-instrumentation/instrumentation.md
index b48b781f..5d7d9fc7 100644
--- a/contributors/devel/sig-instrumentation/instrumentation.md
+++ b/contributors/devel/sig-instrumentation/instrumentation.md
@@ -43,7 +43,7 @@ want and add a slice of the label names to the definition.
```go
requestCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
- Name: "apiserver_request_count",
+ Name: "apiserver_request_total",
Help: "Counter of apiserver requests broken out for each verb, API resource, client, and HTTP response code.",
},
[]string{"verb", "resource", "client", "code"},