You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to get consolidated stats from django-prometheus plugins with multiple workers, the prom module need to setup files on tmp dir.
By default, it save the tmp file suffixed by the pid of the worker process.
Documented here: documentation
In the documentation, we can see a snippet of code to use the worker id instead of the pid when uwsgi is used as server.
How can we have the same behaviour with unit ?
I can't see any env variable pushed with the application worker or any channel open with unit to retrieve this kind of information.
Do you have any hints ?
Thx.
The text was updated successfully, but these errors were encountered:
The obvious thing (to me anyway) seems to be to simply give those files a name that you can then easily lookup in a directory and know that it is a file you are interested in. You could even put said files in their own directory... then all you do is read through any files in there...
Hi,
In order to get consolidated stats from django-prometheus plugins with multiple workers, the prom module need to setup files on tmp dir.
By default, it save the tmp file suffixed by the pid of the worker process.
Documented here: documentation
In the documentation, we can see a snippet of code to use the worker id instead of the pid when uwsgi is used as server.
How can we have the same behaviour with unit ?
I can't see any env variable pushed with the application worker or any channel open with unit to retrieve this kind of information.
Do you have any hints ?
Thx.
The text was updated successfully, but these errors were encountered: