summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2016-07-27 18:42:08 +0200
committerGitHub <noreply@github.com>2016-07-27 18:42:08 +0200
commit14e807192169ee51afee15e273dbec101197d49b (patch)
treeef69ad24a847145885003ebe0591e4e9037e119e /nixos
parent2726593d2ca25a163ae311f3f73aa35da96cd5bc (diff)
parentb2d989779d96915f2697b8400d08aeec6540d40f (diff)
downloadnixlib-14e807192169ee51afee15e273dbec101197d49b.tar
nixlib-14e807192169ee51afee15e273dbec101197d49b.tar.gz
nixlib-14e807192169ee51afee15e273dbec101197d49b.tar.bz2
nixlib-14e807192169ee51afee15e273dbec101197d49b.tar.lz
nixlib-14e807192169ee51afee15e273dbec101197d49b.tar.xz
nixlib-14e807192169ee51afee15e273dbec101197d49b.tar.zst
nixlib-14e807192169ee51afee15e273dbec101197d49b.zip
Merge pull request #17305 from hiberno/update-elk-stack
Update elk stack
Diffstat (limited to 'nixos')
-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 2c3016d27df8..62f6e187ea07 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}