Skip to content

Commit

Permalink
add lifetime log entry
Browse files Browse the repository at this point in the history
  • Loading branch information
slamdev committed May 14, 2020
1 parent a950e11 commit f552902
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/notifier/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func notify(ctx context.Context, client corev1.CoreV1Interface, nodeName string)

logrus.
WithField("node", node.Name).
WithField("created", node.CreationTimestamp).
WithField("created", node.CreationTimestamp.Time).
WithField("lifetime", time.Now().Sub(node.CreationTimestamp.Time)).
WithField("labels", node.Labels).
WithField("pods", podNames).
Info("node is going to be preempted soon")
Expand Down

0 comments on commit f552902

Please sign in to comment.