We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b01b974 + 4a8bc12 commit 401ac06Copy full SHA for 401ac06
ansible/roles/nova/templates/nova.conf.j2
@@ -2,9 +2,12 @@
2
[DEFAULT]
3
debug = {{ nova_logging_debug }}
4
5
-log_dir = /var/log/kolla/nova
6
{% if service_name == "nova-super-conductor" %}
7
log_file = /var/log/kolla/nova/nova-super-conductor.log
+{% elif service_name == "nova-api" %}
8
+log_file = /var/log/kolla/nova/nova-api.log
9
+{% else %}
10
+log_dir = /var/log/kolla/nova
11
{% endif %}
12
13
state_path = /var/lib/nova
releasenotes/notes/bugfix-nova-api-log-file-name-9a377525e73012de.yaml
@@ -0,0 +1,7 @@
1
+---
+fixes:
+ - |
+ Fixes an issue where the Nova API logs were written to
+ files ending with `-wsgi.log` which affected the processing of
+ these logs in the Fluentd pipeline.
+ `LP#1950185 <https://bugs.launchpad.net/kolla-ansible/+bug/1950185>`__
0 commit comments