I've got a daemon implemented in python using the python-daemon library.
The daemon appears to periodically die (or is killed) however, where periodically varies from one day to several months.
I've tried to find the reason for the daemon dying by catching exceptions, logging them to a file, and mailing them to me. The daemon part of my script looks roughly like:
import daemon
context = daemon.DaemonContext(
working_directory='/foo/',
pidfile=lockfile.FileLock('/foo/foo.pid')
)
try:
with context:
do_stuff()
except Exception, e:
log_exception_to_file(e)
mail_exeption_to_me(e)
I've had quite a few exceptions logged and mailed to me, so I know the code generally works.
For the majority of cases, I get nothing, and a watchdog script alerts me to the fact that the daemon is no longer running. Is there some way I can find out or track why the daemon is either dying or being killed?