forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick elastic#5509 to 6.0: Fix ML jobs setup for dynamic modules (
elastic#5518) * Fix ML jobs setup for dynamic modules (elastic#5509) * Fix ML jobs setup for dynamic modules Modules from `modules.d` were ignored by both `setup` command and `--setup` flag. Fixes elastic#5504 * Fix test (cherry picked from commit 70a5ae4) * Update CHANGELOG.asciidoc
- Loading branch information
Showing
6 changed files
with
124 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
filebeat.registry_file: {{ beat.working_dir + '/' }}{{ registryFile|default("registry")}} | ||
|
||
filebeat.config.modules: | ||
path: {{ beat.working_dir + '/modules.d/*.yml' }} | ||
|
||
output.elasticsearch.hosts: ["{{ elasticsearch_url }}"] | ||
output.elasticsearch.index: {{ index_name }} | ||
|
||
setup.template.name: {{ index_name }} | ||
setup.template.pattern: {{ index_name }}* | ||
|
||
setup.kibana.host: {{ kibana_url }} | ||
|
||
{% if kibana_path %} | ||
setup.dashboards.directory: {{ kibana_path }} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters