Note that unit qualifier is required for config.reload.interval

Fixes #11771
This commit is contained in:
Karen Metts 2020-04-09 12:53:00 -04:00
parent c00c3da95a
commit 3b4dd6c5ac
4 changed files with 6 additions and 2 deletions

View file

@ -249,6 +249,7 @@ Changes to Logstash Core are plugin agnostic.
* The setting `config.reload.interval` has been changed to use time value strings such as `5m`, `10s` etc.
Previously, users had to convert this to a millisecond time value themselves.
Note that the unit qualifier (`s`) is required.
[float]
===== RPM/Deb package changes

View file

@ -16,7 +16,9 @@ in configuration settings from the command-line.
By default, Logstash checks for configuration changes every 3 seconds. To change this interval,
use the `--config.reload.interval <interval>` option, where `interval` specifies how often Logstash
checks the config files for changes (in seconds).
checks the config files for changes (in seconds).
Note that the unit qualifier (`s`) is required.
[[force-reload]]
==== Force reloading the config file

View file

@ -209,6 +209,7 @@ With this command, Logstash concatenates three config files, `/tmp/one`, `/tmp/t
*`--config.reload.interval RELOAD_INTERVAL`*::
How frequently to poll the configuration location for changes. The default value is "3s".
Note that the unit qualifier (`s`) is required.
*`--http.host HTTP_HOST`*::
Web API binding host. This option specifies the bind address for the metrics REST endpoint. The default is "127.0.0.1".

View file

@ -157,7 +157,7 @@ guaranteed, but you save the processing cost of preserving order.
| `false`
| `config.reload.interval`
| How often in seconds Logstash checks the config files for changes.
| How often in seconds Logstash checks the config files for changes. Note that the unit qualifier (`s`) is required.
| `3s`
| `config.debug`