
- #Docker syslog driver format driver
- #Docker syslog driver format verification
- #Docker syslog driver format windows
$ docker run \ -log-driver syslog -log-opt syslog-address =udp://1.2.3.4:1111 \ The syslog-address options supports both UDP and TCP
#Docker syslog driver format driver
The following example sets the log driver to syslog and sets the For more aboutĬonfiguring Docker using daemon.json, see
#Docker syslog driver format windows
Located in /etc/docker/ on Linux hosts orĬ:\ProgramData\docker\config\daemon.json on Windows Server. To use the syslog driver as the default logging driver, set the log-driverĪnd log-opt keys to appropriate values in the daemon.json file, which is The format is defined in RFC 5424 and Docker’s syslog driver implements theĪBNF reference in the following way: TIMESTAMP SP HOSTNAME SP APP-NAME SP PROCID SP MSGID

Refer to the log tag option documentation for customizing the log tag format. By default, Docker uses the first 12 characters of the container ID to tag log messages. Ignored if the address protocol is not tcp+tls.Ī string that is appended to the APP-NAME in the syslog message.
#Docker syslog driver format verification
If set to true, TLS verification is skipped when connecting to the syslog daemon. log-opt syslog-tls-key=/etc/ca-certificates/custom/key.pem Ignored if the address protocol is not tcp+tls.

log-opt syslog-tls-cert=/etc/ca-certificates/custom/cert.pem The absolute path to the TLS certificate file. log-opt syslog-tls-ca-cert=/etc/ca-certificates/custom/ca.pem The absolute path to the trust certificates signed by the CA. Can be the number or name for any valid syslog facility. If the transport is tcp, udp, or tcp+tls, the default port is 514. The URI specifier may be ://host:port, unix://path, or unixgram://path. The address of an external syslog server. They can also be set on a givenĬontainer by adding a -log-opt = flag for each option when Key-value pairs to the log-opts JSON array. They can be set as defaults in the daemon.json, by adding them as The following logging options are supported as options for the syslog loggingĭriver.


The syslog logging driver routes logs to a syslog server.
