diff options
author | baude <bbaude@redhat.com> | 2019-03-27 13:50:54 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-04-24 16:00:04 -0500 |
commit | 7bf7c177ab3f67d5de1689842204c258fca083e4 (patch) | |
tree | 960fd1365913209fec61e3226b96a6f8bb1fd051 /libpod.conf | |
parent | d75543fcd2ce87a9b87b8883400f355979004e91 (diff) | |
download | podman-7bf7c177ab3f67d5de1689842204c258fca083e4.tar.gz podman-7bf7c177ab3f67d5de1689842204c258fca083e4.tar.bz2 podman-7bf7c177ab3f67d5de1689842204c258fca083e4.zip |
journald event logging
add the ability for podman to read and write events to journald instead
of just a logfile. This can be controlled in libpod.conf with the
`events_logger` attribute of `journald` or `file`. The default will be
set to `journald`.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod.conf')
-rw-r--r-- | libpod.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod.conf b/libpod.conf index 80422e3dd..ca8d0fb36 100644 --- a/libpod.conf +++ b/libpod.conf @@ -113,3 +113,7 @@ runc = [ "/bin/runc", "/usr/lib/cri-o-runc/sbin/runc" ] + +# Selects which logging mechanism to use for Podman events. Valid values +# are `journald` or `file`. +events_logger = "journald" |