summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2017-01-08 19:25:17 -0800
committerRobin Gloster <mail@glob.in>2017-01-09 15:20:26 +0100
commit618b249fc5b8b86423cc52da5a263bfeb5030e40 (patch)
tree672a95743a578b935e3d58ddb3bdc0750bd378da /nixos
parentbd45d5fe8d2efbd81648122f890b9ee1e454f699 (diff)
downloadnixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar.gz
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar.bz2
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar.lz
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar.xz
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.tar.zst
nixlib-618b249fc5b8b86423cc52da5a263bfeb5030e40.zip
prometheus module: add blackboxExporter
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix57
2 files changed, 58 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index dcba8a2a21d4..576244e76015 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -309,6 +309,7 @@
   ./services/monitoring/nagios.nix
   ./services/monitoring/prometheus/default.nix
   ./services/monitoring/prometheus/alertmanager.nix
+  ./services/monitoring/prometheus/blackbox-exporter.nix
   ./services/monitoring/prometheus/json-exporter.nix
   ./services/monitoring/prometheus/nginx-exporter.nix
   ./services/monitoring/prometheus/node-exporter.nix
diff --git a/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix b/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix
new file mode 100644
index 000000000000..a1ecd6ef58cd
--- /dev/null
+++ b/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix
@@ -0,0 +1,57 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+  cfg = config.services.prometheus.blackboxExporter;
+in {
+  options = {
+    services.prometheus.blackboxExporter = {
+      enable = mkEnableOption "prometheus blackbox exporter";
+
+      configFile = mkOption {
+        type = types.path;
+        description = ''
+          Path to configuration file.
+        '';
+      };
+
+      port = mkOption {
+        type = types.int;
+        default = 9115;
+        description = ''
+          Port to listen on.
+        '';
+      };
+
+      extraFlags = mkOption {
+        type = types.listOf types.str;
+        default = [];
+        description = ''
+          Extra commandline options when launching the blackbox exporter.
+        '';
+      };
+    };
+  };
+
+  config = mkIf cfg.enable {
+    systemd.services.prometheus-blackbox-exporter = {
+      description = "Prometheus exporter for blackbox probes";
+      unitConfig.Documentation = "https://github.com/prometheus/blackbox_exporter";
+      wantedBy = [ "multi-user.target" ];
+      serviceConfig = {
+        User = "nobody";
+        Restart = "always";
+        PrivateTmp = true;
+        WorkingDirectory = /tmp;
+        ExecStart = ''
+          ${pkgs.prometheus-blackbox-exporter}/bin/blackbox_exporter \
+            -web.listen-address :${toString cfg.port} \
+            -config.file ${cfg.configFile} \
+            ${concatStringsSep " \\\n  " cfg.extraFlags}
+        '';
+        ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+      };
+    };
+  };
+}