IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Local dynamic provider
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Local dynamic provider
editDefine multiple key-value pairs to generate multiple configurations.
For example, the following Elastic Agent policy defines a local dynamic provider that
defines three values for item:
inputs:
- type: logfile
streams:
- paths: "/var/${local_dynamic.my_var}/app.log"
providers:
local_dynamic:
items:
- vars:
my_var: key1
- vars:
my_var: key2
- vars:
my_var: key3
The configuration generated by this policy looks like:
inputs:
- type: logfile
streams:
- paths: "/var/key1/app.log"
- type: logfile
streams:
- paths: "/var/key2/app.log"
- type: logfile
streams:
- paths: "/var/key3/app.log"