Rohit Shende

Results 11 comments of Rohit Shende

Same issue is being faced by me. I am also running flask app using supervisor and gunicorn.

**Steps to replicate the issue with gunicorn and supervisor:** Create a file wsgi.py from app import create_app application = create_app('production') if __name__ == "__main__": application.run(debug=True) Then install gunicorn using -...

it is not capturing the duration of the request. Though it captures the number of requests ![image](https://user-images.githubusercontent.com/16113338/92595134-827c1000-f2c1-11ea-9b7c-a115bd3e2270.png)

@FlyingBird95 - Congratulations on the new release of 3.1.0 Please add support for gunicorn too. We are not able to monitor the apis since the production code uses gunicorn. And...

I do not feel that the low duration is the cause. In my case it is taking around 6 sec i.e. 6000 ms for the endpoints even then it is...

Attaching images of production vs local app ### Local `python run.py` ![local](https://user-images.githubusercontent.com/16113338/94139407-33b8a380-fe87-11ea-8db5-7545fa426616.PNG) ### Production ` gunicorn -k gevent -w 10 --worker-connections 1000 --certfile=/etc/ssl/certs/xyz.cer --keyfile=/etc/ssl/certs/xyz.key -b localhost:8080 --log-file gunicorn.log --log-level debug...

Hi, After the above comment. I too tried to replicate the issue using this app https://github.com/alexander34ro/flask-monitoring-dashboard-gunicorn But I failed to replicate the issue Then I made this app same as...

On debugging more I found out the combination is MONITOR_LEVEL=3 + Gunicorn I changed it to `MONITOR_LEVEL=2` and I was able to see the median time getting captured correctly. I...