diff options
author | 2019-07-23 00:23:16 -0600 | |
---|---|---|
committer | 2019-07-23 06:23:16 +0000 | |
commit | dae6aea2922c71ad3848c3060e0c1d22d1856ff8 (patch) | |
tree | 41a52ff3c92390170d4cb187c87420a4a7af1bfc /plugin | |
parent | 2153cada45e421220c7b3efd0f04a76954a19ad2 (diff) | |
download | coredns-dae6aea2922c71ad3848c3060e0c1d22d1856ff8.tar.gz coredns-dae6aea2922c71ad3848c3060e0c1d22d1856ff8.tar.zst coredns-dae6aea2922c71ad3848c3060e0c1d22d1856ff8.zip |
Fix response_rcode_count_total metric (#3029)
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/forward/README.md | 2 | ||||
-rw-r--r-- | plugin/grpc/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/forward/README.md b/plugin/forward/README.md index 94e306ea8..92ffb6655 100644 --- a/plugin/forward/README.md +++ b/plugin/forward/README.md @@ -98,7 +98,7 @@ If monitoring is enabled (via the *prometheus* directive) then the following met * `coredns_forward_request_duration_seconds{to}` - duration per upstream interaction. * `coredns_forward_request_count_total{to}` - query count per upstream. -* `coredns_forward_response_rcode_total{to, rcode}` - count of RCODEs per upstream. +* `coredns_forward_response_rcode_count_total{to, rcode}` - count of RCODEs per upstream. * `coredns_forward_healthcheck_failure_count_total{to}` - number of failed health checks per upstream. * `coredns_forward_healthcheck_broken_count_total{}` - counter of when all upstreams are unhealthy, and we are randomly (this always uses the `random` policy) spraying to an upstream. diff --git a/plugin/grpc/README.md b/plugin/grpc/README.md index 39e05eca7..09b499bb7 100644 --- a/plugin/grpc/README.md +++ b/plugin/grpc/README.md @@ -64,7 +64,7 @@ If monitoring is enabled (via the *prometheus* directive) then the following met * `coredns_grpc_request_duration_seconds{to}` - duration per upstream interaction. * `coredns_grpc_request_count_total{to}` - query count per upstream. -* `coredns_grpc_response_rcode_total{to, rcode}` - count of RCODEs per upstream. +* `coredns_grpc_response_rcode_count_total{to, rcode}` - count of RCODEs per upstream. and we are randomly (this always uses the `random` policy) spraying to an upstream. ## Examples |