3f55b87069
Currently we don't put global Apache error logs into /var/log/kolla, this change adds statements that redirect those logs there. Adapted the logfile names to catch into openstack wsgi logging fluentd input config and existing logrotate cron entries. Change-Id: I21216e688a1993239e3e81411a4e8b6f13e138c2
35 lines
1.3 KiB
Django/Jinja
35 lines
1.3 KiB
Django/Jinja
{% set monasca_log_path = '/var/log/kolla/monasca' %}
|
|
{% set python_path = '/usr/lib/python2.7/site-packages' if monasca_install_type == 'binary' else '/var/lib/kolla/venv/lib/python2.7/site-packages' %}
|
|
{% set wsgi_path = '/usr/bin' if monasca_install_type == 'binary' else '/monasca-log/monasca_log_api/app' %}
|
|
|
|
Listen {{ api_interface_address | put_address_in_context('url') }}:{{ monasca_log_api_port }}
|
|
|
|
TraceEnable off
|
|
|
|
ErrorLog "{{ monasca_log_dir }}/apache-logapi-error.log"
|
|
<IfModule log_config_module>
|
|
CustomLog "{{ monasca_log_dir }}/apache-logapi-access.log" common
|
|
</IfModule>
|
|
|
|
{% if monasca_logging_debug | bool %}
|
|
LogLevel info
|
|
{% endif %}
|
|
|
|
<VirtualHost *:{{ monasca_log_api_port }}>
|
|
|
|
ErrorLog "{{ monasca_log_dir }}/monasca-log-api-error.log"
|
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
|
CustomLog "{{ monasca_log_dir }}/monasca-log-api-access.log" logformat
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIDaemonProcess monasca-log-api group=monasca processes={{ openstack_service_workers }} threads=1 user=monasca python-path={{ python_path }}
|
|
WSGIProcessGroup monasca-log-api
|
|
WSGIScriptAlias / {{ wsgi_path }}/wsgi.py
|
|
WSGIPassAuthorization On
|
|
SetEnv no-gzip 1
|
|
|
|
<Directory "{{ wsgi_path }}">
|
|
Require all granted
|
|
</Directory>
|
|
|
|
</VirtualHost>
|