summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-08-12 11:04:42 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-08-12 11:05:23 +0200
commit5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d (patch)
treeb43a838bcb65cb503b3ef17487e6fd6732ca1804 /nixos/modules/services/monitoring
parent9ac5525f877d879b060fdbe929c6a7e3d2a441d3 (diff)
downloadnixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar.gz
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar.bz2
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar.lz
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar.xz
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.tar.zst
nixlib-5d2764eb68f99574c6b6e0efc2d85a6cdaad2c9d.zip
prometheus-blackbox-exporter: 0.5.0 -> 0.8.1
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix b/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix
index 388e4d4ac01d..ce2e1cf2d74b 100644
--- a/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix
+++ b/nixos/modules/services/monitoring/prometheus/blackbox-exporter.nix
@@ -57,8 +57,8 @@ in {
         AmbientCapabilities = [ "CAP_NET_RAW" ]; # for ping probes
         ExecStart = ''
           ${pkgs.prometheus-blackbox-exporter}/bin/blackbox_exporter \
-            -web.listen-address :${toString cfg.port} \
-            -config.file ${cfg.configFile} \
+            --web.listen-address :${toString cfg.port} \
+            --config.file ${cfg.configFile} \
             ${concatStringsSep " \\\n  " cfg.extraFlags}
         '';
         ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";