No Description

Oz Tiram 480e727af0 Update Debug->Info 3 years ago
LICENSE 06a23f27f8 Add license 6 years ago
README.md 773b4b612c Adding some README information on how to consume this example 4 years ago
example.go 480e727af0 Update Debug->Info 3 years ago
example_test.go b5a549213e Upgrade to latest coredns standards 4 years ago
metrics.go 7f0d44144d comment updates 6 years ago
ready.go b5a549213e Upgrade to latest coredns standards 4 years ago
setup.go b5a549213e Upgrade to latest coredns standards 4 years ago
setup_test.go 2960ad15e5 Migrating example to newer libraries 4 years ago

README.md

example

Name

example - prints "example" on every query handled.

Description

The example plugin prints "example" on every query that go handled by the server. It serves as documentation for writing CoreDNS plugins.

Compilation

This package will always be compiled as part of CoreDNS and not in a standalone way. It will require you to use go get or as a dependency on plugin.cfg.

The manual will have more information about how to configure and extend the server with external plugins.

A simple way to consume this plugin, is by adding the following on plugin.cfg, and recompile it as detailed on coredns.io.

example:github.com/coredns/example

After this you can compile coredns by:

go generate
go build

Or you can instead use make:

make

Syntax

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.

Ready

This plugin reports readiness to the ready plugin. It will be immediately ready.

Examples

In this configuration, we forward all queries to 9.9.9.9 and print "example" whenever we receive a query.

. {
  forward . 9.9.9.9
  example
}

Also See

See the manual.