2009-11-18 09:39:10 +01:00
|
|
|
# Monit system watcher
|
|
|
|
# http://mmonit.org/monit/
|
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
{config, pkgs, lib, ...}:
|
2009-11-18 09:39:10 +01:00
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
let inherit (lib) mkOption mkIf;
|
2009-11-18 09:39:10 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.monit = {
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to run Monit system watcher.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
config = mkOption {
|
|
|
|
default = "";
|
2017-09-28 00:20:14 +02:00
|
|
|
description = "monitrc content";
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-18 10:30:38 +01:00
|
|
|
config = mkIf config.services.monit.enable {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2017-09-28 00:20:14 +02:00
|
|
|
environment.systemPackages = [ pkgs.monit ];
|
|
|
|
|
2018-03-28 23:45:57 +02:00
|
|
|
environment.etc."monitrc" = {
|
|
|
|
text = config.services.monit.config;
|
|
|
|
mode = "0400";
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2016-01-06 07:50:18 +01:00
|
|
|
systemd.services.monit = {
|
2016-09-12 16:31:18 +02:00
|
|
|
description = "Pro-active monitoring utility for unix systems";
|
|
|
|
after = [ "network.target" ];
|
2016-01-06 07:50:18 +01:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-09-12 16:31:18 +02:00
|
|
|
serviceConfig = {
|
2017-09-28 00:20:14 +02:00
|
|
|
ExecStart = "${pkgs.monit}/bin/monit -I -c /etc/monitrc";
|
|
|
|
ExecStop = "${pkgs.monit}/bin/monit -c /etc/monitrc quit";
|
|
|
|
ExecReload = "${pkgs.monit}/bin/monit -c /etc/monitrc reload";
|
2016-09-12 16:31:18 +02:00
|
|
|
KillMode = "process";
|
|
|
|
Restart = "always";
|
|
|
|
};
|
2018-03-28 23:45:57 +02:00
|
|
|
restartTriggers = [ config.environment.etc."monitrc".source ];
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
2018-03-28 23:45:57 +02:00
|
|
|
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
|
|
|
}
|