summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/monit.nix
blob: 642fac3b3a01761666d21cfded8d907839f49d58 (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
# Monit system watcher
# http://mmonit.org/monit/

{config, pkgs, lib, ...}:

let inherit (lib) mkOption mkIf;
in

{
  options = {
    services.monit = {
      enable = mkOption {
        default = false;
        description = ''
          Whether to run Monit system watcher.
        '';
      };
      config = mkOption {
        default = "";
        description = "monit.conf content";
      };
      startOn = mkOption {
        default = "started network-interfaces";
        description = "What Monit supposes to be already present";
      };
    };
  };

  config = mkIf config.services.monit.enable {

    environment.etc = [
      {
        source = pkgs.writeTextFile {
          name = "monit.conf";
          text = config.services.monit.config;
        };
        target = "monit.conf";
        mode = "0400";
      }
    ];

    jobs.monit = {
      description = "Monit system watcher";

      startOn = config.services.monit.startOn;

      exec = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";

      respawn = true;
    };
  };
}