summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/monit.nix
blob: aa51b83912cec83715015bce7e52a572c18c69fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{config, pkgs, lib, ...}:

with lib;

let
  cfg = config.services.monit;
  extraConfig = pkgs.writeText "monitConfig" cfg.extraConfig;
in

{
  imports = [
    (mkRenamedOptionModule [ "services" "monit" "config" ] ["services" "monit" "extraConfig" ])
  ];

  options.services.monit = {

    enable = mkEnableOption "Monit";

    configFiles = mkOption {
      type = types.listOf types.path;
      default = [];
      description = "List of paths to be included in the monitrc file";
    };

    extraConfig = mkOption {
      type = types.lines;
      default = "";
      description = "Additional monit config as string";
    };
  };

  config = mkIf cfg.enable {

    environment.systemPackages = [ pkgs.monit ];

    environment.etc.monitrc = {
      text = concatMapStringsSep "\n" (path: "include ${path}")  (cfg.configFiles ++ [extraConfig]);
      mode = "0400";
    };

    systemd.services.monit = {
      description = "Pro-active monitoring utility for unix systems";
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        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";
        KillMode = "process";
        Restart = "always";
      };
      restartTriggers = [ config.environment.etc.monitrc.source ];
    };

  };
}