This answer describes the out of memory killer on Linux.

Is there a way to get notified when the OOM killer has killed something? Email is preferable. One might do this with a watchdog, but I wonder what the easiest and most robust way is.

link|improve this question

54% accept rate
feedback

2 Answers

The "logwatch" program will periodically mail you all log lines it's configured to be interested in.

It can be configured to email you about an OOM (unless it runs out of memory itself).

Email notifications aren't a good substitute for proper monitoring from an external system as a machine which has no free memory will not normally be able to send email.

Also, if your system is important, then email is probably too slow to get a response from Ops (especially out of hours)

link|improve this answer
feedback

You can read and interpret the kernel log, as syslog records it to /var/log/, and act upon it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.