mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
Create a supervisor interface to let the container monitor to emit events. Signed-off-by: David Calavera <david.calavera@gmail.com>
11 lines
243 B
Go
11 lines
243 B
Go
package daemon
|
|
|
|
// LogContainerEvent generates an event related to a container.
|
|
func (daemon *Daemon) LogContainerEvent(container *Container, action string) {
|
|
daemon.EventsService.Log(
|
|
action,
|
|
container.ID,
|
|
container.Config.Image,
|
|
)
|
|
}
|