summaryrefslogtreecommitdiff
path: root/modules/monitoring.nix
blob: 6ef34e74c806327b68bc031e01e74079b0609a0a (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{ config, lib, pkgs, ... }:
let
  cfg = config.orbekk.monitoring-server;
  aliases = import ../data/aliases.nix;
in
{
  options = {
    orbekk.monitoring-server = {
      enable = lib.mkEnableOption "Enable monitoring server";
      grafana-port = lib.mkOption {
        type = lib.types.int;
        default = aliases.services.grafana.port;
      };
      grafana-domain = lib.mkOption {
        type = lib.types.str;
        default = "grafana.orbekk.com";
      };
      prometheus-port = lib.mkOption {
        type = lib.types.int;
        default = aliases.services.prometheus.port;
      };
      prometheus-exporter-port = lib.mkOption {
        type = lib.types.int;
        default = aliases.services.prometheus-exporter.port;
      };
    };
  };

  config = lib.mkIf cfg.enable {
    services.grafana = {
      enable = true;
      domain = cfg.grafana-domain;
      port = cfg.grafana-port;
      addr = "0.0.0.0";

      provision = {
        enable = true;
        datasources = [
          {
            name = "Prometheus";
            type = "prometheus";
            access = "proxy";
            orgId = 1;
            editable = false;
            url = "http://127.0.0.1:${toString cfg.prometheus-port}";
            isDefault = true;
          }
        ];
      };
    };

    services.prometheus = {
      enable = true;
      port = cfg.prometheus-port;

      scrapeConfigs = [
        {
          job_name = "self";
          static_configs = [{
            targets = ["127.0.0.1:${toString cfg.prometheus-exporter-port}"];
          }];
        }
      ];

      exporters = {
        node = {
          enable = true;
          enabledCollectors = [ "systemd" ];
          port = cfg.prometheus-exporter-port;
        };
      };
    };

    # services.nginx.virtualHosts.${cfg.grafana-domain} = {
    #   locations."/" = {
    #     enableACME = true;
    #     forceSSL = true;
    #     proxyPass = "http://127.0.0.1:${toString cfg.grafana-port}";
    #     proxyWebsockets = true;
    #   };
    # };
  };
}