flask-prometheus
flask-prometheus copied to clipboard
Flask extension to monitor flask applications using prometheus.
This allows paths with parameters to be grouped appropriately. This is super important for RESTful APIs and such with id's scattered throughout the url paths. I also removed the build...
When running a flask app with Gunicorn the metrics monitoring doesn't work, do you plan to setup a multithreading capability for multiple workers?
In my own version of Prometheus monitoring service, I added ``` @app.before_first_request def initialize(): start_http_server(port, addr) ``` to start the http server before the first request. But the server will...