Reputation: 155
It's possible to view incoming requests with flask after launching it e.g. flask image
Is there a way of viewing requests coming in live with gunicorn?
Upvotes: 3
Views: 2354
Reputation: 12772
Run Gunicorn in the way below, you will see the incoming request log:
$ gunicorn --workers 3 your_module:your_app --access-logfile -
Upvotes: 9