summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/monitoring/prometheus
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/monitoring/prometheus')
-rw-r--r--nixos/modules/services/monitoring/prometheus/exporters.nix1
-rw-r--r--nixos/modules/services/monitoring/prometheus/exporters/influxdb.nix34
2 files changed, 35 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix
index d648de6a4148..9182c2f2ed87 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters.nix
+++ b/nixos/modules/services/monitoring/prometheus/exporters.nix
@@ -33,6 +33,7 @@ let
"domain"
"dovecot"
"fritzbox"
+ "influxdb"
"json"
"jitsi"
"kea"
diff --git a/nixos/modules/services/monitoring/prometheus/exporters/influxdb.nix b/nixos/modules/services/monitoring/prometheus/exporters/influxdb.nix
new file mode 100644
index 000000000000..ba45173e946a
--- /dev/null
+++ b/nixos/modules/services/monitoring/prometheus/exporters/influxdb.nix
@@ -0,0 +1,34 @@
+{ config, lib, pkgs, options }:
+
+with lib;
+
+let
+ cfg = config.services.prometheus.exporters.influxdb;
+in
+{
+ port = 9122;
+ extraOpts = {
+ sampleExpiry = mkOption {
+ type = types.str;
+ default = "5m";
+ example = "10m";
+ description = "How long a sample is valid for";
+ };
+ udpBindAddress = mkOption {
+ type = types.str;
+ default = ":9122";
+ example = "192.0.2.1:9122";
+ description = "Address on which to listen for udp packets";
+ };
+ };
+ serviceOpts = {
+ serviceConfig = {
+ RuntimeDirectory = "prometheus-influxdb-exporter";
+ ExecStart = ''
+ ${pkgs.prometheus-influxdb-exporter}/bin/influxdb_exporter \
+ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
+ --influxdb.sample-expiry ${cfg.sampleExpiry} ${concatStringsSep " " cfg.extraFlags}
+ '';
+ };
+ };
+}