coredns-ldap/README.md

45 lines
886 B
Markdown
Raw Normal View History

# example
2018-02-22 14:06:00 +00:00
## Name
2018-02-22 14:05:25 +00:00
*example* - prints "example" on every query handled.
2018-02-22 14:05:25 +00:00
## Description
The example plugin prints "example" on every query that go handled by the server. It serves as
documentation for writing CoreDNS plugins.
## Syntax
~~~ txt
example
~~~
## Metrics
If monitoring is enabled (via the *prometheus* directive) the following metric is exported:
* `coredns_example_request_count_total{server}` - query count to the *example* plugin.
The `server` label indicated which server handled the request, see the *metrics* plugin for details.
2018-04-27 06:21:42 +00:00
## Health
2018-04-27 06:22:36 +00:00
This plugin implements dynamic health checking. It will always return healthy though.
2018-04-27 06:21:42 +00:00
## Examples
In this configuration, we forward all queries to 9.9.9.9 and print "example" whenever we receive
2018-02-22 14:05:25 +00:00
a query.
~~~ corefile
2018-02-22 14:05:25 +00:00
. {
forward . 9.9.9.9
example
}
~~~
## Also See
See the [manual](https://coredns.io/manual).