diff options
author | Peter Hunt <pehunt@redhat.com> | 2019-05-18 22:17:37 -0400 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2019-05-28 11:10:57 -0400 |
commit | 02f971131a3bb71615d15a45df808edd0fa88266 (patch) | |
tree | 0802e2f2a3feb8c09458d1bebe003846e0f02aa2 /docs | |
parent | 68ce353a23c8cd15077c70bc730470841ef37fb7 (diff) | |
download | podman-02f971131a3bb71615d15a45df808edd0fa88266.tar.gz podman-02f971131a3bb71615d15a45df808edd0fa88266.tar.bz2 podman-02f971131a3bb71615d15a45df808edd0fa88266.zip |
Implement podman logs with log-driver journald
Add a journald reader that translates the journald entry to a k8s-file formatted line, to be added as a log line
Note: --follow with journald hasn't been implemented. It's going to be a larger undertaking that can wait.
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-logs.1.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/podman-logs.1.md b/docs/podman-logs.1.md index ce5d890ce..6d5be373b 100644 --- a/docs/podman-logs.1.md +++ b/docs/podman-logs.1.md @@ -23,6 +23,8 @@ Note: If you are following a container which is removed `podman container rm` or removed on exit `podman run --rm ...`, then there is a chance the the log file will be removed before `podman logs` reads the final content. +Also note: **--follow** is not currently supported when the container's log driver is journald + **--latest, -l** Instead of providing the container name or ID, use the last created container. If you use methods other than Podman |