diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-06-09 16:28:13 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-06-10 11:09:12 +0200 |
commit | 99cbe59917ada7896b3f4c3252d91af6768c2e9b (patch) | |
tree | f3b96df35749696b3199e7abb8d0f624f7499584 /cmd/podman/system/events.go | |
parent | 9967f28339dc43c97966bc07345af53a374faf67 (diff) | |
download | podman-99cbe59917ada7896b3f4c3252d91af6768c2e9b.tar.gz podman-99cbe59917ada7896b3f4c3252d91af6768c2e9b.tar.bz2 podman-99cbe59917ada7896b3f4c3252d91af6768c2e9b.zip |
podman-events: clarify streaming behaviour
Unless `--since` or `--until` is specified, `podman events` will stream
new events. Clarify this behavior in the `--help` message and man page
to avoid confusion.
Fixes: #6536
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'cmd/podman/system/events.go')
-rw-r--r-- | cmd/podman/system/events.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/podman/system/events.go b/cmd/podman/system/events.go index 27e80138e..c401c5a92 100644 --- a/cmd/podman/system/events.go +++ b/cmd/podman/system/events.go @@ -17,8 +17,10 @@ import ( ) var ( - eventsDescription = "Monitor podman events" - eventsCommand = &cobra.Command{ + eventsDescription = `Monitor podman events. + + By default, streaming mode is used, printing new events as they occur. Previous events can be listed via --since and --until.` + eventsCommand = &cobra.Command{ Use: "events", Args: validate.NoArgs, Short: "Show podman events", |