Skip to content
Snippets Groups Projects
Commit f7a592f8 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix fluentd parsing of WSGI logs"

parents da105c20 a32cddca
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,9 @@ ...@@ -49,7 +49,9 @@
"/var/log/kolla/monasca/monasca-log-api.log", "/var/log/kolla/monasca/monasca-log-api.log",
"/var/log/kolla/neutron/dnsmasq.log", "/var/log/kolla/neutron/dnsmasq.log",
"/var/log/kolla/*/*-access.log", "/var/log/kolla/*/*-access.log",
"/var/log/kolla/*/*-error.log"] "/var/log/kolla/*/*-error.log",
"/var/log/kolla/*/*_access.log",
"/var/log/kolla/*/*_error.log"]
pos_file /var/run/{{ fluentd_binary }}/kolla-openstack.pos pos_file /var/run/{{ fluentd_binary }}/kolla-openstack.pos
tag kolla.* tag kolla.*
format multiline format multiline
......
# Note (blallau): to manage Apache and WSGI log files # Note (blallau): to manage Apache and WSGI log files
<source> <source>
@type tail @type tail
path /var/log/kolla/*/*-access.log,/var/log/kolla/*/*-error.log path /var/log/kolla/*/*-access.log,/var/log/kolla/*/*-error.log,/var/log/kolla/*/*_access.log,/var/log/kolla/*/*_error.log
pos_file /var/run/{{ fluentd_binary }}/kolla-openstack-wsgi.pos pos_file /var/run/{{ fluentd_binary }}/kolla-openstack-wsgi.pos
tag kolla.* tag kolla.*
format /^(?<Payload>.*)$/ format /^(?<Payload>.*)$/
......
---
fixes:
- |
Fixes an issue with fluentd parsing of WSGI logs for Aodh, Masakari,
Qinling, Vitrage and Zun. See `bug 1720371
<https://bugs.launchpad.net/kolla-ansible/+bug/1720371>`__ for details.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment