coredns/middleware/log
Miek Gieben 8555716046 Cleanups and tests (#272)
For some reasons there was a dnsserver/middleware.go that defined
the middleware handlers. This code was a repeat from
middleware/middleware.go. Removed dnsserver/middleware.go and replaced
all uses of dnsserver.Middleware with middleware.Middleware.

Added dnsserver/address_test.go to test the zone normalization (and to
improve the test coverage). The deleted file will also improve the test
coverage :)
2016-09-19 11:26:00 +01:00
..
log.go Remove lumberjack logger (#257) 2016-09-16 15:50:16 +01:00
log_test.go Cleanup: put middleware helper functions in pkgs (#245) 2016-09-07 11:10:16 +01:00
README.md Remove lumberjack logger (#257) 2016-09-16 15:50:16 +01:00
setup.go Cleanups and tests (#272) 2016-09-19 11:26:00 +01:00
setup_test.go Remove lumberjack logger (#257) 2016-09-16 15:50:16 +01:00

log

log enables request logging. The request log is also known in some vernacular as an access log.

Syntax

log
  • With no arguments, a query log entry is written to query.log in the common log format for all requests (base name = .).
log file
  • file is the log file to create (or append to). The base path is assumed to be . .
log name file [format]
  • name is the base name to match in order to be logged
  • file is the log file to create (or append to)
  • format is the log format to use (default is Common Log Format)

Log File

The log file can be any filename. It could also be stdout or stderr to write the log to the console, or syslog to write to the system log (except on Windows). If the log file does not exist beforehand, CoreDNS will create it before appending to it.

Log Format

You can specify a custom log format with any placeholder values. Log supports both request and response placeholders.

The following place holders are supported:

  • {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.
  • {port}: client's port.
  • {rcode}: response RCODE.
  • {size}: response size.
  • {duration}: response duration.
  • {>bufsize}: the EDNS0 buffer size advertized by the client.
  • {>do}: is the EDNS0 DO (DNSSEC OK) bit set.
  • {>id}: query ID
  • {>opcode}: query OPCODE

Examples

Log all requests to a file:

log /var/log/query.log

Custom log format:

log . ../query.log "{proto} Request: {name} {type} {>id}"