diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-27 17:49:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 17:49:27 +0000 |
commit | 278afae1de55a2951b2a4810b100d14e5647977b (patch) | |
tree | 127c92338c22c1763c4564d43ba1c6eed34ac9c5 /libpod/events/config.go | |
parent | ed2afb2059744defccd40894b5f23e3803f6b3c5 (diff) | |
parent | 0c1a3b70f5f1b8a3f8d336c6576518fae26c37cf (diff) | |
download | podman-278afae1de55a2951b2a4810b100d14e5647977b.tar.gz podman-278afae1de55a2951b2a4810b100d14e5647977b.tar.bz2 podman-278afae1de55a2951b2a4810b100d14e5647977b.zip |
Merge pull request #14705 from jakecorrenti/show-health-status-event
Show Health Status events
Diffstat (limited to 'libpod/events/config.go')
-rw-r--r-- | libpod/events/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/events/config.go b/libpod/events/config.go index 2e7016136..a678baa2d 100644 --- a/libpod/events/config.go +++ b/libpod/events/config.go @@ -40,6 +40,8 @@ type Event struct { Time time.Time // Type of event that occurred Type Type + // Health status of the current container + HealthStatus string `json:"health_status,omitempty"` Details } @@ -141,6 +143,8 @@ const ( Exited Status = "died" // Export ... Export Status = "export" + // HealthStatus ... + HealthStatus Status = "health_status" // History ... History Status = "history" // Import ... |