aboutsummaryrefslogtreecommitdiff
path: root/modules/services/metrics-exporter/default.nix
blob: c3c471cec2ec538b3d535b50f4c04425c8c6884c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, pkgs, lib, ... }:
let cfg = config.my.services.metrics-exporter;
in
{
  imports = [ ./promtail.nix ];

  options.my.services.metrics-exporter = with lib; {
    enable = mkEnableOption "Prometheus metrics exporter";
  };

  config = lib.mkIf cfg.enable {
    services.prometheus = {
      exporters = {
        node = {
          enable = true;
          enabledCollectors = [ "tcpstat" "systemd" "interrupts" ];
        };
      };
    };
  };
}