-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate config_dir (Filebeat) and refactor docs #5321
Conversation
This deprecates the config_dir option in Filebeat, as it's functionality is covered by `filebeat.config.prospectors`. There's a bigger refactoring in the docs, to reflect that the `filebeat.config.*` and `metricbeat.config.*` options can be used for both including external files and live reloading. Only the live reloading part stays in Beta, including external config files is GA. Part of elastic#4581.
fa77c15
to
764a1a4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of small changes. Otherwise, LGTM.
|
||
To enable dynamic config reloading, you specify the following options under | ||
Filebeat can load external configuration files for prospectors and modules, | ||
which allows you to separate your configuration in multiple smaller |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change "separate your configuration in multiple smaller" to "separate your configuration into multiple smaller"
To enable dynamic config reloading, you specify the following options under | ||
Filebeat can load external configuration files for prospectors and modules, | ||
which allows you to separate your configuration in multiple smaller | ||
configuration files. To use this functionality, use the `path` option from the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we really need to mention the options here since we describe them more completely later. Might actually be a bit confusing.
Maybe just add links to the sections that follow and say:
To use this functionality, specify the path
option when you configure the <<reload-prospector-config,prospector>> or <<reload-module-config,module>>.
BTW, I would probably rename the anchors to load-prospector-config and load-module-config.
This deprecates the config_dir option in Filebeat, as it's functionality is covered by `filebeat.config.prospectors`. There's a bigger refactoring in the docs, to reflect that the `filebeat.config.*` and `metricbeat.config.*` options can be used for both including external files and live reloading. Only the live reloading part stays in Beta, including external config files is GA. Part of elastic#4581. (cherry picked from commit 396cff7)
This deprecates the config_dir option in Filebeat, as it's functionality is covered by `filebeat.config.prospectors`. There's a bigger refactoring in the docs, to reflect that the `filebeat.config.*` and `metricbeat.config.*` options can be used for both including external files and live reloading. Only the live reloading part stays in Beta, including external config files is GA. Part of #4581. (cherry picked from commit 396cff7)
…stic#5331) This deprecates the config_dir option in Filebeat, as it's functionality is covered by `filebeat.config.prospectors`. There's a bigger refactoring in the docs, to reflect that the `filebeat.config.*` and `metricbeat.config.*` options can be used for both including external files and live reloading. Only the live reloading part stays in Beta, including external config files is GA. Part of elastic#4581. (cherry picked from commit 9af1d5c)
This deprecates the config_dir option in Filebeat, as it's functionality is
covered by
filebeat.config.prospectors
. There's a bigger refactoring in thedocs, to reflect that the
filebeat.config.*
andmetricbeat.config.*
optionscan be used for both including external files and live reloading. Only the
live reloading part stays in Beta, including external config files is GA.
Part of #4581.