a73c81c936
The health check requests from haproxy cause uwsgi to write a lot of useless log lines. This can make it more difficult to find a problem with a particular service. This patch adds a route to look for the `osa-haproxy-healthcheck` user agent string, which haproxy uses when performing health checks. Any requests with that user agent are not logged. Closes-Bug: 1742718 Change-Id: I92658731ce93e4d2dbcadb53e80a08f19fe928fe
23 lines
686 B
Django/Jinja
23 lines
686 B
Django/Jinja
[uwsgi]
|
|
uid = {{ sahara_system_user_name }}
|
|
gid = {{ sahara_system_group_name }}
|
|
|
|
virtualenv = /openstack/venvs/sahara-{{ sahara_venv_tag }}
|
|
wsgi-file = {{ sahara_bin }}/{{ item.value.wsgi_name }}
|
|
http-socket = {{ item.value.uwsgi_bind_address }}:{{ item.value.uwsgi_port }}
|
|
|
|
master = true
|
|
enable-threads = true
|
|
processes = {{ sahara_wsgi_processes }}
|
|
threads = {{ sahara_wsgi_threads }}
|
|
exit-on-reload = true
|
|
die-on-term = true
|
|
lazy-apps = true
|
|
add-header = Connection: close
|
|
buffer-size = {{ sahara_wsgi_buffer_size }}
|
|
thunder-lock = true
|
|
logfile-chmod = 644
|
|
|
|
# Avoid filling up the logs with health check requests from haproxy.
|
|
route-user-agent = ^osa-haproxy-healthcheck$ donotlog:
|