summary refs log tree commit diff
path: root/nixos/modules/services/logging/logstash.nix
diff options
context:
space:
mode:
authorChristian Lask <christian@hiberno.net>2016-07-27 17:45:38 +0200
committerChristian Lask <christian@hiberno.net>2016-07-27 17:45:38 +0200
commit6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9 (patch)
tree1b0668f7963567b479e0f1acb79e37d6eb440042 /nixos/modules/services/logging/logstash.nix
parent381967327ff7e9885a6ebd32b13580a8a95ee5fc (diff)
downloadnixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.gz
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.bz2
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.lz
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.xz
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.zst
nixpkgs-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.zip
logstash: 1.5.3 -> 2.3.4
Note: the option to configure the watchdog timeout seems to be gone
in the 2.3 series of Logstash. It complains about an unknown option
and it is not in the source anymore. I am thus removing this
configuration option to adjust the service to these changes, too.
Diffstat (limited to 'nixos/modules/services/logging/logstash.nix')
-rw-r--r--nixos/modules/services/logging/logstash.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index 2c3016d27df..62f6e187ea0 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -51,12 +51,6 @@ in
         description = "Logging verbosity level.";
       };
 
-      watchdogTimeout = mkOption {
-        type = types.int;
-        default = 10;
-        description = "Set watchdog timeout value in seconds.";
-      };
-
       filterWorkers = mkOption {
         type = types.int;
         default = 1;
@@ -140,7 +134,6 @@ in
           "-w ${toString cfg.filterWorkers} " +
           ops havePluginPath "--pluginpath ${pluginPath} " +
           "${verbosityFlag} " +
-          "--watchdog-timeout ${toString cfg.watchdogTimeout} " +
           "-f ${writeText "logstash.conf" ''
             input {
               ${cfg.inputConfig}