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.
Fix local_dynamic documentation and add providers inline doc. (elasti…
…c#22657) * Fix local_dynamic documentation and add providers inline doc. Fix issues with the configuration and usage of the local_dynamic provider and add inline documentation in the yaml files. * Update docker yml * enable should be true in the yaml
- Loading branch information
Showing
8 changed files
with
196 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Providers | ||
|
||
# Providers supply the key/values pairs that are used for variable substitution | ||
# and conditionals. Each provider's keys are automatically prefixed with the name | ||
# of the provider. | ||
|
||
#providers: | ||
|
||
# Agent provides information about the running agent. | ||
# agent: | ||
# enabled: true | ||
|
||
# Docker provides inventory information from Docker. | ||
# docker: | ||
# enabled: true | ||
# host: "unix:///var/run/docker.sock" | ||
# cleanup_timeout: 60 | ||
|
||
# Env providers information about the running environment. | ||
# env: | ||
# enabled: true | ||
|
||
# Host provides information about the current host. | ||
# host: | ||
# enabled: true | ||
|
||
# Local provides custom keys to use as variable. | ||
# local: | ||
# enabled: true | ||
# vars: | ||
# foo: bar | ||
|
||
# Local dynamic allows you to define multiple key/values to generate multiple configurations. | ||
# local_dynamic: | ||
# enabled: true | ||
# items: | ||
# - vars: | ||
# my_var: key1 | ||
# - vars: | ||
# my_var: key2 | ||
# - vars: | ||
# my_var: key3 |
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