coredns/plugin/ready
Miek Gieben 118b0c9408
plugin/metrcs: fix datarace on listeners (#2835)
This fixes a data race on the listener(s) that get started in the
metrics plugins.

It also restore pkg/uniq to its former glory and removes and state being
carried in there; this means for metrics that registry.go was to
replicate that behavior *with* locking (as pkg/uniq doesn't do, or need
that).

Also renamed uniqAddr to just u, to make it slightly shorter.

Signed-off-by: Miek Gieben <miek@miek.nl>
2019-05-18 18:34:46 +01:00
..
list.go Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00
readiness.go Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00
README.md Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00
ready.go Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00
ready_test.go Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00
setup.go plugin/metrcs: fix datarace on listeners (#2835) 2019-05-18 18:34:46 +01:00
setup_test.go Add *ready* plugin (#2616) 2019-03-07 20:35:16 +00:00

ready

Name

ready - enables a readiness check HTTP endpoint.

Description

By enabling ready an HTTP endpoint on port 8181 will return 200 OK, when all plugins that are able to signal readiness have done so. If some are not ready yet the endpoint will return a 503 with the body containing the list of plugins that are not ready. Once a plugin has signaled it is ready it will not be queried again.

Each Server Block that enables the ready plugin will have the plugins in that server block report readiness into the /ready endpoint that runs on the same port.

Syntax

ready [ADDRESS]

ready optionally takes an address; the default is :8181. The path is fixed to /ready. The readiness endpoint returns a 200 response code and the word "OK" when this server is ready. It returns a 503 otherwise.

Plugins

Any plugin wanting to signal readiness will need to implement the ready.Readiness interface by implementing a method Ready() bool that returns true when the plugin is ready and false otherwise.

Examples

Let ready report readiness for both the . and example.org servers (assuming the whois plugin also exports readiness):

. {
    ready
    erratic
}

example.org {
    ready
    whoami
}

Run ready on a different port.

. {
    ready localhost:8091
}