We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
- match: $tag: '**' $type: opensearch scheme: https ssl_verify: false hosts: oshost01,oshost02 user: XXXX password: XXXX logstash_format: false index_name: fluentd.${tag} templates: fluentd: '/etc/fluent/os_index_templates/fluentd.json'
[warn]: section <templates> is not used in <match **> of opensearch plugin
I expect to not read the warning message and the opensearch plugin to use the provided templates
{ "index_patterns" : [ "fluentd.*" ], "priority": 10, "data_stream": {} }
The text was updated successfully, but these errors were encountered:
Okay, I suppose this one can be closed. It's documented here: https://docs.fluentd.org/configuration/config-file-yaml#special-yaml-elements
templates: fluentd: '/etc/fluent/os_index_templates/fluentd.json'
has to be replaced with
templates: !fluent/json {fluentd: '/etc/fluent/os_index_templates/fluentd.json'}
Sorry, something went wrong.
No branches or pull requests
Steps to replicate
[warn]: section <templates> is not used in <match **> of opensearch plugin
Expected Behavior or What you need to ask
I expect to not read the warning message and the opensearch plugin to use the provided templates
Using Fluentd and OpenSearch plugin versions
The text was updated successfully, but these errors were encountered: