Log when external signal is received

PiperOrigin-RevId: 220204591
Change-Id: I21a9c6f5c12a376d18da5d10c1871837c4f49ad2
This commit is contained in:
Fabricio Voznika
2018-11-05 17:42:24 -08:00
committed by Shentubot
parent 95722dc4dd
commit a467f09261
2 changed files with 13 additions and 0 deletions
+12
View File
@@ -445,6 +445,18 @@ const (
DeliverToForegroundProcessGroup
)
func (s SignalDeliveryMode) String() string {
switch s {
case DeliverToProcess:
return "Process"
case DeliverToAllProcesses:
return "All"
case DeliverToForegroundProcessGroup:
return "Foreground Process Group"
}
return fmt.Sprintf("unknown signal delivery mode: %d", s)
}
// SignalArgs are arguments to the Signal method.
type SignalArgs struct {
// CID is the container ID.
+1
View File
@@ -336,6 +336,7 @@ func New(args Args) (*Loader, error) {
// properly.
deliveryMode = DeliverToForegroundProcessGroup
}
log.Infof("Received external signal %d, mode: %v", sig, deliveryMode)
if err := l.signal(args.ID, 0, int32(sig), deliveryMode); err != nil {
log.Warningf("error sending signal %v to container %q: %v", sig, args.ID, err)
}