Monit for Debian ================ Contribution ------------ Monit upstream uses Canonical-like CLA, that permit them to relicense a contribution under a proprietary license and do propietary derivative works. That makes the current GPL license of the project to be a farce. Please consider contribiting patches to the Debian's monit package instead under any DFSG-compatible license. Configuration ------------- Hope you'll like monit configuration snippets found in /etc/monit/monitrc.d/. These are supposed to be included into /etc/monit/monitrc *and* reviewed accordingly to site configuration and policy, including own file permissions (defaults to 0644, configuration snippets *are* readable by anyone), IP addresses, host names, exact limit values, etc. Generally we try to provide them working out-of-box but it's not always feasible. Please do post bugs against monit package when you have to change any snippet in the way that should be current default (e.g. a binary path has changed in the package). Packagers may drop the default monit config file to: /etc/monit/monitrc.d/ and alternative/optional snippets to: /etc/monit/monitrc.d/- Monitoring of deb packages -------------------------- If you monitor debian packages, you should consider adding the following snippet to your /etc/apt/apt.conf.d/50monit configuration to stop monit during a apt upgrade and start it again once apt finishes. This avoid spurious monit restarts/alerts of services that are stoped/started as part of their debian package postinst. --8<-- DPkg::Pre-Invoke { "[ -x /usr/bin/monit ] && /etc/init.d/monit stop" }; DPkg::Post-Invoke { "[ -x /usr/bin/monit ] && /etc/init.d/monit start" }; --8<-- See also man 5 apt.conf. Startup delay ------------- For some slow-to-start processes monit can, especially at bootup, start to monitor a process before it is fully initialised. This can cause monit to erroneously attempt a restart. To avoid this, you should set the "start delay" option in monitrc. A typical example looks like this: --8<-- set daemon 120 with start delay 240 --8<--