We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With gaiohtp workers, gunicorn.request.duration seems to be off by a factor of 1,000,000:
gaiohtp
gunicorn.request.duration
For a request that takes 5 seconds to complete, gunicorn will send StatsD the value 0.005, rather than the expected 5,000
0.005
5,000
With synchronous workers, StatsD receives the expected value of 5,000
Possibily related to #1300, and the linked aiohttp access log format issue.
Using Pyramid and Python 3.5
The text was updated successfully, but these errors were encountered:
Actually just tested this with a patched version of aiohttp that includes this commit: aio-libs/aiohttp#1117
And the same issue is present, so maybe not related to access log parsing.
Sorry, something went wrong.
closing since this worker is not part any more from gunicorn .
No branches or pull requests
With
gaiohtp
workers,gunicorn.request.duration
seems to be off by a factor of 1,000,000:For a request that takes 5 seconds to complete, gunicorn will send StatsD the value
0.005
, rather than the expected5,000
With synchronous workers, StatsD receives the expected value of
5,000
Possibily related to #1300, and the linked aiohttp access log format issue.
Using Pyramid and Python 3.5
The text was updated successfully, but these errors were encountered: