An administrator wants to view real-time container lifecycle events across the entire Podman system, such as container creation, starting, and stopping. Which command should be executed?
Trap 1: podman monitor --stream
podman monitor is not a valid subcommand for event tracking.
Trap 2: podman logs --follow --events
podman logs retrieves standard output/error streams of a specific container, not system-wide events.
Trap 3: podman system trace
podman system trace is not the correct command for lifecycle events.
- A
podman monitor --stream
Why wrong: podman monitor is not a valid subcommand for event tracking.
- B
podman events
podman events streams real-time events from the Podman system.
- C
podman logs --follow --events
Why wrong: podman logs retrieves standard output/error streams of a specific container, not system-wide events.
- D
podman system trace
Why wrong: podman system trace is not the correct command for lifecycle events.