2016-03-19 12:58:08 +00:00
|
|
|
# log
|
2016-03-19 11:16:08 +00:00
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
*log* enables query logging to standard output.
|
2016-03-19 11:16:08 +00:00
|
|
|
|
|
|
|
|
## Syntax
|
|
|
|
|
|
2016-10-10 12:09:29 +01:00
|
|
|
~~~ txt
|
2016-03-19 11:16:08 +00:00
|
|
|
log
|
|
|
|
|
~~~
|
|
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
* With no arguments, a query log entry is written to *stdout* in the common log format for all requests
|
2016-03-19 11:16:08 +00:00
|
|
|
|
2016-10-10 12:09:29 +01:00
|
|
|
~~~ txt
|
2016-10-10 20:13:22 +01:00
|
|
|
log FILE
|
2016-03-19 11:16:08 +00:00
|
|
|
~~~
|
|
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
* **FILE** is the log file to create (or append to). The *only* valid name for **FILE** is *stdout*.
|
2016-03-19 11:16:08 +00:00
|
|
|
|
2016-10-10 12:09:29 +01:00
|
|
|
~~~ txt
|
2016-10-10 20:13:22 +01:00
|
|
|
log [NAME] FILE [FORMAT]
|
2016-03-19 11:16:08 +00:00
|
|
|
~~~
|
|
|
|
|
|
2016-10-10 20:13:22 +01:00
|
|
|
* `NAME` is the name to match in order to be logged
|
2017-05-31 20:28:53 +01:00
|
|
|
* `FILE` is the log file (again only *stdout* is allowed here).
|
2016-10-10 20:13:22 +01:00
|
|
|
* `FORMAT` is the log format to use (default is Common Log Format)
|
2016-03-19 11:16:08 +00:00
|
|
|
|
2016-10-10 12:09:29 +01:00
|
|
|
You can further specify the class of responses that get logged:
|
|
|
|
|
|
|
|
|
|
~~~ txt
|
2016-10-10 20:13:22 +01:00
|
|
|
log [NAME] FILE [FORMAT] {
|
2016-10-10 12:09:29 +01:00
|
|
|
class [success|denial|error|all]
|
|
|
|
|
}
|
|
|
|
|
~~~
|
|
|
|
|
|
2016-10-10 20:13:22 +01:00
|
|
|
Here `success` `denial` and `error` denotes the class of responses that should be logged. The
|
2016-10-10 12:09:29 +01:00
|
|
|
classes have the following meaning:
|
|
|
|
|
|
|
|
|
|
* `success`: successful response
|
|
|
|
|
* `denial`: either NXDOMAIN or NODATA (name exists, type does not)
|
2016-11-09 13:02:06 +00:00
|
|
|
* `error`: SERVFAIL, NOTIMP, REFUSED, etc. Anything that indicates the remote server is not willing to
|
2016-10-10 12:09:29 +01:00
|
|
|
resolve the request.
|
2016-11-09 13:02:06 +00:00
|
|
|
* `all`: the default - nothing is specified.
|
2016-10-10 12:09:29 +01:00
|
|
|
|
2016-11-09 13:02:06 +00:00
|
|
|
If no class is specified, it defaults to *all*.
|
2016-10-10 12:09:29 +01:00
|
|
|
|
2016-03-19 11:16:08 +00:00
|
|
|
## Log File
|
|
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
The "log file" can only be *stdout*. CoreDNS expects another service to pick up this output and deal
|
|
|
|
|
with it, i.e. journald when using systemd or Docker's logging capabilities.
|
2016-03-19 11:16:08 +00:00
|
|
|
|
|
|
|
|
## Log Format
|
|
|
|
|
|
2016-04-03 17:05:16 +01:00
|
|
|
You can specify a custom log format with any placeholder values. Log supports both request and
|
|
|
|
|
response placeholders.
|
|
|
|
|
|
|
|
|
|
The following place holders are supported:
|
|
|
|
|
|
2017-08-07 03:49:40 -07:00
|
|
|
* `{type}`: qtype of the request
|
|
|
|
|
* `{name}`: qname of the request
|
|
|
|
|
* `{class}`: qclass of the request
|
|
|
|
|
* `{proto}`: protocol used (tcp or udp)
|
|
|
|
|
* `{when}`: time of the query
|
|
|
|
|
* `{remote}`: client's IP address
|
|
|
|
|
* `{size}`: request size in bytes
|
|
|
|
|
* `{port}`: client's port
|
|
|
|
|
* `{duration}`: response duration
|
|
|
|
|
* `{rcode}`: response RCODE
|
|
|
|
|
* `{rsize}`: response size
|
|
|
|
|
* `{>rflags}`: response flags, each set flag will be displayed, e.g. "aa, tc". This includes the qr
|
|
|
|
|
bit as well.
|
|
|
|
|
* `{>bufsize}`: the EDNS0 buffer size advertised in the query
|
|
|
|
|
* `{>do}`: is the EDNS0 DO (DNSSEC OK) bit set in the query
|
2016-04-03 17:05:16 +01:00
|
|
|
* `{>id}`: query ID
|
2017-08-07 03:49:40 -07:00
|
|
|
* `{>opcode}`: query OPCODE
|
2016-04-03 17:05:16 +01:00
|
|
|
|
2016-10-10 12:09:29 +01:00
|
|
|
The default Common Log Format is:
|
|
|
|
|
|
|
|
|
|
~~~ txt
|
2017-08-07 03:49:40 -07:00
|
|
|
`{remote} - [{when}] "{type} {class} {name} {proto} {size} {>do} {>bufsize}" {rcode} {>rflags} {rsize} {duration}`
|
2016-10-10 12:09:29 +01:00
|
|
|
~~~
|
2016-03-19 11:16:08 +00:00
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
Log all requests to stdout
|
2016-03-19 11:16:08 +00:00
|
|
|
|
|
|
|
|
~~~
|
2017-05-31 20:28:53 +01:00
|
|
|
log stdout
|
2016-03-19 11:16:08 +00:00
|
|
|
~~~
|
|
|
|
|
|
2017-05-31 20:28:53 +01:00
|
|
|
Custom log format, for all zones (`.`)
|
2016-03-19 11:16:08 +00:00
|
|
|
|
|
|
|
|
~~~
|
2017-05-31 20:28:53 +01:00
|
|
|
log . stdout "{proto} Request: {name} {type} {>id}"
|
2016-03-19 11:16:08 +00:00
|
|
|
~~~
|
2016-10-10 12:09:29 +01:00
|
|
|
|
|
|
|
|
Only log denials for example.org (and below to a file)
|
|
|
|
|
|
|
|
|
|
~~~
|
2017-05-31 20:28:53 +01:00
|
|
|
log example.org stdout {
|
2016-10-10 12:09:29 +01:00
|
|
|
class denial
|
|
|
|
|
}
|
|
|
|
|
~~~
|