mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
Note that unit qualifier is required for config.reload.interval
Fixes #11771
This commit is contained in:
parent
c00c3da95a
commit
3b4dd6c5ac
4 changed files with 6 additions and 2 deletions
1
docs/static/breaking-changes.asciidoc
vendored
1
docs/static/breaking-changes.asciidoc
vendored
|
@ -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
|
||||
|
|
4
docs/static/reloading-config.asciidoc
vendored
4
docs/static/reloading-config.asciidoc
vendored
|
@ -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
|
||||
|
|
|
@ -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".
|
||||
|
|
2
docs/static/settings-file.asciidoc
vendored
2
docs/static/settings-file.asciidoc
vendored
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue