Skip to content
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

[doc] Add example to cross-plugin-concepts #12672

Merged
merged 5 commits into from
Apr 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion docs/static/cross-plugin-concepts.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,17 @@ List-type URI parameters will automatically expand strings that contain multiple
whitespace-delimited URIs into separate entries. This behaviour enables the expansion
of an arbitrary list of URIs from a single Environment- or Keystore-variable.

Examples of plugins and options that support this functionality:
These plugins and options support this functionality:

* <<plugins-inputs-elasticsearch-hosts,Elasticsearch input plugin - `hosts`>>
* <<plugins-outputs-elasticsearch-hosts,Elasticsearch output plugin - `hosts`>>
* <<plugins-filters-elasticsearch-hosts,Elasticsearch filter plugin - `hosts`>>

You can use this functionality to define an environment variable with
multiple whitespace-delimited URIs and use it for the options above.

**Example**

```
ES_HOSTS="es1.example.com es2.example.com:9201 es3.example.com:9201"
```