Structured Logging Dictionary¶
This page describes the common entries of the Structured Logging component. Currently logging.structured_logging_backend can have these values:
The
defaulttext based backendThe
systemd-journalbackendThe
jsonbackend (added in version 5.1.0).
The default backend¶
The default backend uses a text representation of the key-value pairs.
A line is constructed by appending all key-value pairs as key="value", separated by spaces.
The output is written by passing the resulting text line to the standard error stream and also to syslog if logging.disable_syslog is false.
Depending on the value of logging.timestamp a timestamp is prepended to the log line.
An example line (including prepended timestamp) looks like this:
Oct 18 08:45:21 msg="Raised soft limit on number of filedescriptors to match max-mthreads and threads settings" subsystem="config" level="0" prio="Warning" tid="0" ts="1697611521.119" limit="6469"
Key names are not quoted.
Values are quoted with double quotes.
If a value contains a double quote, it is escaped with a backslash.
Backslashes in the value are escaped by prepending a backslash.
The following keys are always present:
Key |
Type |
Example |
Remarks |
|
|
|
Value is the same for all instances of
this log entry, together with
|
|
|
|
Uniquely identifies the log
entry together with the value of
|
|
|
|
The detail level of the log entry, do not confuse with logging.loglevel. Not actively used currently. |
|
|
|
One of |
|
|
|
The Posix worker thread id that produced the log entry. If not produced by a worker thread, the value is zero. |
|
|
|
Number of seconds since the Unix epoch, including fractional part. |
A log entry can also have zero or more additional key-value pairs. Common keys are:
Key |
Type |
Example |
Remarks |
|
|
|
An error cause. |
|
|
|
An IP: port combination. |
|
|
|
A list of subnets, space separated. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Text representation of DNS query type. |
|
|
|
Numeric DNS response code |
|
|
|
The id of the MThread that produced the log entry. |
The systemd-journal backend¶
The systemd-journal structured logging backend uses mostly the same keys and values as the default backend, with the exceptions:
keys are capitalized as required for
systemd-journal.msgis translated toMESSAGE.priois translated toPRIORITY.tsis translated toTIMESTAMP.If the original key is in a list of keys special to
systemd-journal, it is capitalized and prepended byPDNS_. The list of special keys is: message, message_id, priority, code_file, code_line, code_func, errno, invocation_id, user_invocation_id, syslog_facility, syslog_identifier, syslog_pid, syslog_timestamp, syslog_raw, documentation, tid, unit, user_unit, object_pid.
To use this logging backend, add the --structured-logging-backend=systemd-journal to the command line in the systemd unit file.
Note that adding it to the recursor configuration file does not work as expected, as this file is processed after the logging has been set up.
To query the log, use a command similar to:
# journalctl -r -n 1 -o json-pretty -u pdns-recursor.service
The json backend¶
The json structured logging backend has been added in version 5.1.0 and uses the same keys and values as the default backend.
An example of a log object:
{"level": "0", "limit": "10765", "msg": "Raised soft limit on number of filedescriptors to match max-mthreads and threads settings", "priority": "4", "subsystem": "config", "tid": "0", "ts": "1709285994.851"}
All values are represented as strings.
The JSON log objects are written to the standard error stream.