4e05bf491a
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
package supervisor
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/containerd/runtime"
|
|
)
|
|
|
|
type ExitTask struct {
|
|
baseTask
|
|
Process runtime.Process
|
|
}
|
|
|
|
func (s *Supervisor) exit(t *ExitTask) error {
|
|
start := time.Now()
|
|
proc := t.Process
|
|
status, err := proc.ExitStatus()
|
|
if err != nil {
|
|
logrus.WithField("error", err).Error("containerd: get exit status")
|
|
}
|
|
logrus.WithFields(logrus.Fields{"pid": proc.ID(), "status": status}).Debug("containerd: process exited")
|
|
|
|
// if the process is the the init process of the container then
|
|
// fire a separate event for this process
|
|
if proc.ID() != runtime.InitProcessID {
|
|
ne := &ExecExitTask{
|
|
ID: proc.Container().ID(),
|
|
PID: proc.ID(),
|
|
Status: status,
|
|
Process: proc,
|
|
}
|
|
s.SendTask(ne)
|
|
return nil
|
|
}
|
|
container := proc.Container()
|
|
ne := &DeleteTask{
|
|
ID: container.ID(),
|
|
Status: status,
|
|
PID: proc.ID(),
|
|
}
|
|
s.SendTask(ne)
|
|
|
|
ExitProcessTimer.UpdateSince(start)
|
|
|
|
return nil
|
|
}
|
|
|
|
type ExecExitTask struct {
|
|
baseTask
|
|
ID string
|
|
PID string
|
|
Status int
|
|
Process runtime.Process
|
|
}
|
|
|
|
func (s *Supervisor) execExit(t *ExecExitTask) error {
|
|
container := t.Process.Container()
|
|
// exec process: we remove this process without notifying the main event loop
|
|
if err := container.RemoveProcess(t.PID); err != nil {
|
|
logrus.WithField("error", err).Error("containerd: find container for pid")
|
|
}
|
|
s.notifySubscribers(Event{
|
|
Timestamp: time.Now(),
|
|
ID: t.ID,
|
|
Type: "exit",
|
|
PID: t.PID,
|
|
Status: t.Status,
|
|
})
|
|
return nil
|
|
}
|