summaryrefslogtreecommitdiff
path: root/libpod/events/config.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-07-07 08:09:48 -0500
committerbaude <bbaude@redhat.com>2019-07-07 08:54:20 -0500
commitd252100c946ff7fd581197d636ed7966b11e9a83 (patch)
tree50fc6db382a33dcdf83b3798845980b636951bd7 /libpod/events/config.go
parentf7407f2eb512e1407f8281009eb829f37405119b (diff)
downloadpodman-d252100c946ff7fd581197d636ed7966b11e9a83.tar.gz
podman-d252100c946ff7fd581197d636ed7966b11e9a83.tar.bz2
podman-d252100c946ff7fd581197d636ed7966b11e9a83.zip
get last container event
an internal change in libpod will soon required the ability to lookup the last container event using the continer name or id and the type of event. this pr is in preperation for that need. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/events/config.go')
-rw-r--r--libpod/events/config.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/libpod/events/config.go b/libpod/events/config.go
index 810988205..b9f01f3a5 100644
--- a/libpod/events/config.go
+++ b/libpod/events/config.go
@@ -2,6 +2,8 @@ package events
import (
"time"
+
+ "github.com/pkg/errors"
)
// EventerType ...
@@ -158,3 +160,12 @@ const (
// EventFilter for filtering events
type EventFilter func(*Event) bool
+
+var (
+ // ErrEventTypeBlank indicates the event log found something done by podman
+ // but it isnt likely an event
+ ErrEventTypeBlank = errors.New("event type blank")
+
+ // ErrEventNotFound indicates that the event was not found in the event log
+ ErrEventNotFound = errors.New("unable to find event")
+)