2016-04-03 09:15:55 +01:00
|
|
|
# prometheus
|
|
|
|
|
|
2016-04-14 07:00:16 +01:00
|
|
|
This module enables prometheus metrics for CoreDNS. The default location for the metrics is
|
2016-04-28 10:44:47 +00:00
|
|
|
`localhost:9153`. The metrics path is fixed to `/metrics`.
|
2016-04-03 09:15:55 +01:00
|
|
|
|
|
|
|
|
The following metrics are exported:
|
|
|
|
|
|
2016-07-04 06:08:45 -04:00
|
|
|
* coredns_dns_request_count_total{zone, proto, family}
|
|
|
|
|
* coredns_dns_request_duration_milliseconds{zone}
|
2016-10-26 10:01:52 +01:00
|
|
|
* coredns_dns_request_size_bytes{zone, proto}
|
2016-07-04 06:08:45 -04:00
|
|
|
* coredns_dns_request_do_count_total{zone}
|
|
|
|
|
* coredns_dns_request_type_count_total{zone, type}
|
|
|
|
|
* coredns_dns_response_size_bytes{zone, proto}
|
|
|
|
|
* coredns_dns_response_rcode_count_total{zone, rcode}
|
|
|
|
|
|
|
|
|
|
Each counter has a label `zone` which is the zonename used for the request/response.
|
|
|
|
|
|
|
|
|
|
Extra labels used are:
|
|
|
|
|
|
|
|
|
|
* `proto` which holds the transport of the response ("udp" or "tcp")
|
|
|
|
|
* The address family (`family`) of the transport (1 = IP (IP version 4), 2 = IP6 (IP version 6)).
|
2016-08-22 14:29:50 -07:00
|
|
|
* `type` which holds the query type. It holds most common types (A, AAAA, MX, SOA, CNAME, PTR, TXT,
|
2016-07-04 06:08:45 -04:00
|
|
|
NS, SRV, DS, DNSKEY, RRSIG, NSEC, NSEC3, IXFR, AXFR and ANY) and "other" which lumps together all
|
|
|
|
|
other types.
|
|
|
|
|
* The `response_rcode_count_total` has an extra label `rcode` which holds the rcode of the response.
|
2016-04-03 09:15:55 +01:00
|
|
|
|
2016-08-22 14:29:50 -07:00
|
|
|
If monitoring is enabled, queries that do not enter the middleware chain are exported under the fake
|
2016-10-26 10:01:52 +01:00
|
|
|
name "dropped" (without a closing dot - this is never a valid domain name).
|
2016-04-03 09:15:55 +01:00
|
|
|
|
|
|
|
|
## Syntax
|
|
|
|
|
|
|
|
|
|
~~~
|
2016-10-10 20:13:22 +01:00
|
|
|
prometheus [ADDRESS]
|
2016-04-03 09:15:55 +01:00
|
|
|
~~~
|
|
|
|
|
|
|
|
|
|
For each zone that you want to see metrics for.
|
|
|
|
|
|
2016-08-22 14:29:50 -07:00
|
|
|
It optionally takes an address to which the metrics are exported; the default
|
2016-04-28 10:44:47 +00:00
|
|
|
is `localhost:9153`. The metrics path is fixed to `/metrics`.
|
2016-04-03 09:15:55 +01:00
|
|
|
|
|
|
|
|
## Examples
|
2016-10-26 10:01:52 +01:00
|
|
|
|
|
|
|
|
Use an alternative address:
|
|
|
|
|
|
|
|
|
|
~~~
|
|
|
|
|
prometheus localhost:9253
|
|
|
|
|
~~~
|