|
@@ -3,14 +3,16 @@ package events
|
|
|
const (
|
|
|
// ContainerEventType is the event type that containers generate
|
|
|
ContainerEventType = "container"
|
|
|
+ // DaemonEventType is the event type that daemon generate
|
|
|
+ DaemonEventType = "daemon"
|
|
|
// ImageEventType is the event type that images generate
|
|
|
ImageEventType = "image"
|
|
|
- // VolumeEventType is the event type that volumes generate
|
|
|
- VolumeEventType = "volume"
|
|
|
// NetworkEventType is the event type that networks generate
|
|
|
NetworkEventType = "network"
|
|
|
- // DaemonEventType is the event type that daemon generate
|
|
|
- DaemonEventType = "daemon"
|
|
|
+ // PluginEventType is the event type that plugins generate
|
|
|
+ PluginEventType = "plugin"
|
|
|
+ // VolumeEventType is the event type that volumes generate
|
|
|
+ VolumeEventType = "volume"
|
|
|
)
|
|
|
|
|
|
// Actor describes something that generates events,
|