summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus/exporters/openvpn.nix
blob: a97a753ebc3799ebacba15d359679e6c4c31c425 (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
{ config, pkgs, lib, ... }:

with lib;

let
  cfg = config.services.prometheus.exporters.openvpn;
in {
  port = 9176;
  extraOpts = {
    statusPaths = mkOption {
      type = types.listOf types.str;
      description = ''
        Paths to OpenVPN status files. Please configure the OpenVPN option
        <literal>status</literal> accordingly.
      '';
    };
    telemetryPath = mkOption {
      type = types.str;
      default = "/metrics";
      description = ''
        Path under which to expose metrics.
      '';
    };
  };

  serviceOpts = {
    serviceConfig = {
      PrivateDevices = true;
      ProtectKernelModules = true;
      NoNewPrivileges = true;
      ExecStart = ''
        ${pkgs.prometheus-openvpn-exporter}/bin/openvpn_exporter \
          -openvpn.status_paths "${concatStringsSep "," cfg.statusPaths}" \
          -web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
          -web.telemetry-path ${cfg.telemetryPath}
      '';
    };
  };
}