2f1fc83c75
most databases default to allow ~100 connections at least. oslo.messaging defaults to 64 threads per worker. we should bump up the thread count to be inline with other databases and openstack Change-Id: I2a72bfc3739c714f9ce6787b7a21c0d8ed09d037
16 lines
542 B
Plaintext
16 lines
542 B
Plaintext
Listen %GNOCCHI_PORT%
|
|
|
|
<VirtualHost *:%GNOCCHI_PORT%>
|
|
WSGIDaemonProcess gnocchi lang='en_US.UTF-8' locale='en_US.UTF-8' user=%USER% display-name=%{GROUP} processes=%APIWORKERS% threads=32 %VIRTUALENV%
|
|
WSGIProcessGroup gnocchi
|
|
WSGIScriptAlias / %WSGI%
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
ErrorLog /var/log/%APACHE_NAME%/gnocchi.log
|
|
CustomLog /var/log/%APACHE_NAME%/gnocchi-access.log combined
|
|
</VirtualHost>
|
|
|
|
WSGISocketPrefix /var/run/%APACHE_NAME%
|