summaryrefslogtreecommitdiff
path: root/libpod/events/config.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-03 19:16:03 -0400
committerGitHub <noreply@github.com>2022-05-03 19:16:03 -0400
commit3d84661195aa8fbf3dab67375099cb991fd7fe81 (patch)
tree2c87e85d53cf01763fec61464e5a208b18de83ae /libpod/events/config.go
parent1e0c50df38ff955011f7ebb83a0268f3f1cd2841 (diff)
parent8da5f3f733273245dd4e86324ca88bf8e4ede37a (diff)
downloadpodman-3d84661195aa8fbf3dab67375099cb991fd7fe81.tar.gz
podman-3d84661195aa8fbf3dab67375099cb991fd7fe81.tar.bz2
podman-3d84661195aa8fbf3dab67375099cb991fd7fe81.zip
Merge pull request #14085 from jwhonce/jira/RUN-1491
Add podman machine events
Diffstat (limited to 'libpod/events/config.go')
-rw-r--r--libpod/events/config.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/libpod/events/config.go b/libpod/events/config.go
index 35680a275..00cdca007 100644
--- a/libpod/events/config.go
+++ b/libpod/events/config.go
@@ -17,6 +17,8 @@ const (
Journald EventerType = iota
// Null is a no-op events logger. It does not read or write events.
Null EventerType = iota
+ // Memory indicates the event logger will hold events in memory
+ Memory EventerType = iota
)
// Event describes the attributes of a libpod event
@@ -55,7 +57,7 @@ type Details struct {
// EventerOptions describe options that need to be passed to create
// an eventer
type EventerOptions struct {
- // EventerType describes whether to use journald or a file
+ // EventerType describes whether to use journald, file or memory
EventerType string
// LogFilePath is the path to where the log file should reside if using
// the file logger
@@ -110,6 +112,8 @@ const (
System Type = "system"
// Volume - event is related to volumes
Volume Type = "volume"
+ // Machine - event is related to machine VM's
+ Machine Type = "machine"
// Attach ...
Attach Status = "attach"