Merge "Fix fluentd parsing of WSGI logs"
This commit is contained in:
commit
f7a592f874
@ -49,7 +49,9 @@
|
||||
"/var/log/kolla/monasca/monasca-log-api.log",
|
||||
"/var/log/kolla/neutron/dnsmasq.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
|
||||
tag kolla.*
|
||||
format multiline
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Note (blallau): to manage Apache and WSGI log files
|
||||
<source>
|
||||
@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
|
||||
tag kolla.*
|
||||
format /^(?<Payload>.*)$/
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
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.
|
Loading…
Reference in New Issue
Block a user