nixos/prometheus-surfboard-exporter: add new module

Changed files
+45 -12
nixos
modules
services
monitoring
prometheus
+13 -12
nixos/modules/services/monitoring/prometheus/exporters.nix
···
# systemd service must be provided by specifying either
# `serviceOpts.script` or `serviceOpts.serviceConfig.ExecStart`
exporterOpts = {
-
blackbox = import ./exporters/blackbox.nix { inherit config lib pkgs; };
-
collectd = import ./exporters/collectd.nix { inherit config lib pkgs; };
-
dovecot = import ./exporters/dovecot.nix { inherit config lib pkgs; };
-
fritzbox = import ./exporters/fritzbox.nix { inherit config lib pkgs; };
-
json = import ./exporters/json.nix { inherit config lib pkgs; };
-
minio = import ./exporters/minio.nix { inherit config lib pkgs; };
-
nginx = import ./exporters/nginx.nix { inherit config lib pkgs; };
-
node = import ./exporters/node.nix { inherit config lib pkgs; };
-
postfix = import ./exporters/postfix.nix { inherit config lib pkgs; };
-
snmp = import ./exporters/snmp.nix { inherit config lib pkgs; };
-
unifi = import ./exporters/unifi.nix { inherit config lib pkgs; };
-
varnish = import ./exporters/varnish.nix { inherit config lib pkgs; };
+
blackbox = import ./exporters/blackbox.nix { inherit config lib pkgs; };
+
collectd = import ./exporters/collectd.nix { inherit config lib pkgs; };
+
dovecot = import ./exporters/dovecot.nix { inherit config lib pkgs; };
+
fritzbox = import ./exporters/fritzbox.nix { inherit config lib pkgs; };
+
json = import ./exporters/json.nix { inherit config lib pkgs; };
+
minio = import ./exporters/minio.nix { inherit config lib pkgs; };
+
nginx = import ./exporters/nginx.nix { inherit config lib pkgs; };
+
node = import ./exporters/node.nix { inherit config lib pkgs; };
+
postfix = import ./exporters/postfix.nix { inherit config lib pkgs; };
+
snmp = import ./exporters/snmp.nix { inherit config lib pkgs; };
+
surfboard = import ./exporters/surfboard.nix { inherit config lib pkgs; };
+
unifi = import ./exporters/unifi.nix { inherit config lib pkgs; };
+
varnish = import ./exporters/varnish.nix { inherit config lib pkgs; };
};
mkExporterOpts = ({ name, port }: {
+32
nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix
···
+
{ config, lib, pkgs }:
+
+
with lib;
+
+
let
+
cfg = config.services.prometheus.exporters.surfboard;
+
in
+
{
+
port = 9239;
+
extraOpts = {
+
modemAddress = mkOption {
+
type = types.str;
+
default = "192.168.100.1";
+
description = ''
+
The hostname or IP of the cable modem.
+
'';
+
};
+
};
+
serviceOpts = {
+
description = "Prometheus exporter for surfboard cable modem";
+
unitConfig.Documentation = "https://github.com/ipstatic/surfboard_exporter";
+
serviceConfig = {
+
DynamicUser = true;
+
ExecStart = ''
+
${pkgs.prometheus-surfboard-exporter}/bin/surfboard_exporter \
+
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
+
--modem-address ${cfg.modemAddress} \
+
${concatStringsSep " \\\n " cfg.extraFlags}
+
'';
+
};
+
};
+
}