aboutsummaryrefslogtreecommitdiff
path: root/plugin/metadata/README.md
blob: 32f58baa89f88f3adc3489d89303ca5e3f6f1ee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# metadata

## Name

*metadata* - enable a metadata collector.

## Description

By enabling *metadata* any plugin that implements [metadata.Provider interface](https://godoc.org/github.com/coredns/coredns/plugin/metadata#Provider) will be called for each DNS query, at being of the process for that query, in order to add it's own Metadata to context. The metadata collected will be available for all plugins handler, via the Context parameter provided in the ServeDNS function.
Metadata plugin is automatically adding the so-called default medatada (extracted from the query) to the context. Those default metadata are: {qname}, {qtype}, {client_ip}, {client_port}, {protocol}, {server_ip}, {server_port}


## Syntax

~~~
metadata [ZONES... ]
~~~

## Plugins

metadata.Provider interface needs to be implemented by each plugin willing to provide metadata information for other plugins. It will be called by metadata and gather the information from all plugins in context.
Note: this method should work quickly, because it is called for every request
from the metadata plugin.
If **ZONES** is specified then metadata add is limited by zones. Metadata is added to every context going through metadata.Provider if **ZONES** are not specified.


## Examples

Enable metadata for all requests. Rewrite uses one of the provided by default metadata variables.

~~~ corefile
. {
    metadata
    rewrite edns0 local set 0xffee {client_ip}
    forward . 8.8.8.8:53
}
~~~

Add metadata for all requests within `example.org.`. Rewrite uses one of provided by default metadata variables. Any other requests won't have metadata.

~~~ corefile
. {
    metadata example.org
    rewrite edns0 local set 0xffee {client_ip}
    forward . 8.8.8.8:53
}
~~~