containerd/event.go

41 lines
1.0 KiB
Go
Raw Normal View History

2015-11-05 23:29:53 +00:00
package containerd
2015-11-10 22:24:34 +00:00
import (
"os"
"time"
"github.com/opencontainers/specs"
2015-11-10 22:24:34 +00:00
)
type EventType string
const (
ExitEventType EventType = "exit"
StartContainerEventType EventType = "startContainer"
DeleteEventType EventType = "deleteContainerEvent"
GetContainerEventType EventType = "getContainer"
SignalEventType EventType = "signal"
AddProcessEventType EventType = "addProcess"
2015-11-10 22:24:34 +00:00
)
func NewEvent(t EventType) *Event {
return &Event{
Type: t,
Timestamp: time.Now(),
Err: make(chan error, 1),
}
}
type Event struct {
Type EventType `json:"type"`
Timestamp time.Time `json:"timestamp"`
ID string `json:"id,omitempty"`
BundlePath string `json:"bundlePath,omitempty"`
Pid int `json:"pid,omitempty"`
Status int `json:"status,omitempty"`
Signal os.Signal `json:"signal,omitempty"`
Process *specs.Process `json:"process,omitempty"`
Containers []Container `json:"-"`
Err chan error `json:"-"`
2015-11-10 21:44:35 +00:00
}