Merge "Add suppress_type_name to stop warnings with ES7"

This commit is contained in:
Zuul 2021-08-10 16:26:11 +00:00 committed by Gerrit Code Review
commit 578ca1d647
3 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,7 @@
reconnect_on_error true
buffer_type file
buffer_path /var/lib/fluentd/data/elasticsearch.buffer/{{ syslog_swift_facility }}.*
suppress_type_name true
</store>
{% elif enable_monasca | bool and monasca_ingest_control_plane_logs | bool %}
<store>
@ -97,6 +98,7 @@
reconnect_on_error true
buffer_type file
buffer_path /var/lib/fluentd/data/elasticsearch.buffer/{{ syslog_haproxy_facility }}.*
suppress_type_name true
</store>
{% elif enable_monasca | bool and monasca_ingest_control_plane_logs | bool %}
<store>
@ -157,6 +159,7 @@
reconnect_on_error true
buffer_type file
buffer_path /var/lib/fluentd/data/elasticsearch.buffer/{{ syslog_glance_tls_proxy_facility }}.*
suppress_type_name true
</store>
{% elif enable_monasca | bool and monasca_ingest_control_plane_logs | bool %}
<store>
@ -218,6 +221,7 @@
reconnect_on_error true
buffer_type file
buffer_path /var/lib/fluentd/data/elasticsearch.buffer/{{ syslog_neutron_tls_proxy_facility }}.*
suppress_type_name true
</store>
{% elif enable_monasca | bool and monasca_ingest_control_plane_logs | bool %}
<store>

View File

@ -25,5 +25,6 @@
reconnect_on_error true
buffer_type file
buffer_path /var/lib/fluentd/data/elasticsearch.buffer/openstack.*
suppress_type_name true
</store>
</match>

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Stops Fluentd warning message when posting to Elasticsearch 7 bulk
API.