Documentation
¶
Index ¶
Constants ¶
View Source
const ( // ContainerEventType is the event type that containers generate ContainerEventType = "container" // 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" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Actor ¶
Actor describes something that generates events, like a container, or a network, or a volume. It has a defined name and a set or attributes. The container attributes are its labels, other actors can generate these attributes from other properties.
type Message ¶
type Message struct {
// Deprecated information from JSONMessage.
// With data only in container events.
Status string `json:"status,omitempty"`
ID string `json:"id,omitempty"`
From string `json:"from,omitempty"`
Type string
Action string
Actor Actor
Time int64 `json:"time,omitempty"`
TimeNano int64 `json:"timeNano,omitempty"`
}
Message represents the information an event contains
Click to show internal directories.
Click to hide internal directories.