This change replaces ElasticSearch with OpenSearch, and Kibana with OpenSearch Dashboards. It migrates the data from ElasticSearch to OpenSearch upon upgrade. No TLS support is in this patch (will be a followup). A replacement for ElasticSearch Curator will be added as a followup. Depends-On: https://review.opendev.org/c/openstack/kolla/+/830373 Co-authored-by: Doug Szumski <doug@stackhpc.com> Co-authored-by: Kyle Dean <kyle@stackhpc.com> Change-Id: Iab10ce7ea5d5f21a40b1f99b28e3290b7e9ce895
82 lines
2.8 KiB
Django/Jinja
82 lines
2.8 KiB
Django/Jinja
{% for item in syslog_facilities | selectattr('enabled') %}
|
|
<match syslog.{{ item.facility }}.**>
|
|
@type copy
|
|
<store>
|
|
@type file
|
|
path /var/log/kolla/{{ item.logdir }}/{{ item.logfile }}
|
|
append true
|
|
# Disable timestamp in filename for logs
|
|
<buffer []>
|
|
path /var/log/kolla/{{ item.logdir }}/{{ item.logfile }}.*.buffer
|
|
</buffer>
|
|
<format>
|
|
output_tag {{ item.output_tag | default(false) | lower }}
|
|
output_time {{ item.output_time | default(false) | lower }}
|
|
</format>
|
|
</store>
|
|
{% if log_direct_to_elasticsearch %}
|
|
<store>
|
|
@type elasticsearch
|
|
host {{ elasticsearch_address }}
|
|
port {{ elasticsearch_port | default('9200') }}
|
|
scheme {{ fluentd_elasticsearch_scheme }}
|
|
{% if fluentd_elasticsearch_path != '' %}
|
|
path {{ fluentd_elasticsearch_path }}
|
|
{% endif %}
|
|
{% if fluentd_elasticsearch_scheme == 'https' %}
|
|
ssl_version {{ fluentd_elasticsearch_ssl_version }}
|
|
ssl_verify {{ fluentd_elasticsearch_ssl_verify }}
|
|
{% if fluentd_elasticsearch_cacert | length > 0 %}
|
|
ca_file {{ fluentd_elasticsearch_cacert }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if fluentd_elasticsearch_user != '' and fluentd_elasticsearch_password != ''%}
|
|
user {{ fluentd_elasticsearch_user }}
|
|
password {{ fluentd_elasticsearch_password }}
|
|
{% endif %}
|
|
logstash_format true
|
|
logstash_prefix {{ opensearch_log_index_prefix }}
|
|
reconnect_on_error true
|
|
request_timeout {{ fluentd_elasticsearch_request_timeout }}
|
|
suppress_type_name true
|
|
<buffer>
|
|
@type file
|
|
path /var/lib/fluentd/data/elasticsearch.buffer/{{ item.facility }}.*
|
|
flush_interval 15s
|
|
</buffer>
|
|
</store>
|
|
{% elif log_direct_to_opensearch %}
|
|
<store>
|
|
@type opensearch
|
|
host {{ opensearch_address }}
|
|
port {{ opensearch_port }}
|
|
scheme {{ fluentd_opensearch_scheme }}
|
|
{% if fluentd_opensearch_path != '' %}
|
|
path {{ fluentd_opensearch_path }}
|
|
{% endif %}
|
|
{% if fluentd_opensearch_scheme == 'https' %}
|
|
ssl_version {{ fluentd_opensearch_ssl_version }}
|
|
ssl_verify {{ fluentd_opensearch_ssl_verify }}
|
|
{% if fluentd_opensearch_cacert | length > 0 %}
|
|
ca_file {{ fluentd_opensearch_cacert }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if fluentd_opensearch_user != '' and fluentd_opensearch_password != ''%}
|
|
user {{ fluentd_opensearch_user }}
|
|
password {{ fluentd_opensearch_password }}
|
|
{% endif %}
|
|
logstash_format true
|
|
logstash_prefix {{ opensearch_log_index_prefix }}
|
|
reconnect_on_error true
|
|
request_timeout {{ fluentd_opensearch_request_timeout }}
|
|
suppress_type_name true
|
|
<buffer>
|
|
@type file
|
|
path /var/lib/fluentd/data/opensearch.buffer/{{ item.facility }}.*
|
|
flush_interval 15s
|
|
</buffer>
|
|
</store>
|
|
{% endif %}
|
|
</match>
|
|
{% endfor %}
|