summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus/fritzbox-exporter.nix
blob: 6da39b6519cb257d41104cc79ab84a9356d5488b (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{ config, pkgs, lib, ... }:

with lib;

let
  cfg = config.services.prometheus.fritzboxExporter;
in {
  options = {
    services.prometheus.fritzboxExporter = {
      enable = mkEnableOption "prometheus fritzbox exporter";

      port = mkOption {
        type = types.int;
        default = 9133;
        description = ''
          Port to listen on.
        '';
      };

      gatewayAddress = mkOption {
        type = types.str;
        default = "fritz.box";
        description = ''
          The hostname or IP of the FRITZ!Box.
        '';
      };

      gatewayPort = mkOption {
        type = types.int;
        default = 49000;
        description = ''
          The port of the FRITZ!Box UPnP service.
        '';
      };

      extraFlags = mkOption {
        type = types.listOf types.str;
        default = [];
        description = ''
          Extra commandline options when launching the fritzbox exporter.
        '';
      };

      openFirewall = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Open port in firewall for incoming connections.
        '';
      };
    };
  };

  config = mkIf cfg.enable {
    networking.firewall.allowedTCPPorts = optional cfg.openFirewall cfg.port;

    systemd.services.prometheus-fritzbox-exporter = {
      description = "Prometheus exporter for FRITZ!Box via UPnP";
      unitConfig.Documentation = "https://github.com/ndecker/fritzbox_exporter";
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        User = "nobody";
        Restart = "always";
        PrivateTmp = true;
        WorkingDirectory = /tmp;
        ExecStart = ''
          ${pkgs.prometheus-fritzbox-exporter}/bin/fritzbox_exporter \
            -listen-address :${toString cfg.port} \
            -gateway-address ${cfg.gatewayAddress} \
            -gateway-port ${toString cfg.gatewayPort} \
            ${concatStringsSep " \\\n  " cfg.extraFlags}
        '';
      };
    };
  };
}