We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 88ec455 + 9743ff2 commit a88b631Copy full SHA for a88b631
1 file changed
metrics/cgroups/oom.go
@@ -116,7 +116,8 @@ func (o *oomCollector) start() {
116
if err == unix.EINTR {
117
continue
118
}
119
- logrus.WithField("error", err).Fatal("cgroups: epoll wait")
+ logrus.WithError(err).Error("cgroups: epoll wait failed, OOM notifications disabled")
120
+ return
121
122
for i := 0; i < n; i++ {
123
o.process(uintptr(events[i].Fd), events[i].Events)
0 commit comments