prometheus_flask_exporter icon indicating copy to clipboard operation
prometheus_flask_exporter copied to clipboard

Prometheus exporter for Flask applications

Results 44 prometheus_flask_exporter issues
Sort by recently updated
recently updated
newest added

Did it like described in https://github.com/rycus86/prometheus_flask_exporter#usage but with `app.run(debug=True)` at the end? 🤔 ```fish > curl localhost:5000 TypeError: The view function for 'main' did not return a valid response. The...

An awkward situation. Code: ```py metrics = prometheus_flask_exporter.PrometheusMetrics(app) metrics.start_http_server(8081, host=config.METRICS_HOST) ``` Result: ``` website_1 | * Serving Flask app 'src.app:app' (lazy loading) website_1 | * Environment: development website_1 | *...

This replaces the use of lower-performance interpolation with f-strings and simplifies conditionals and file reading to match the supported Python versions as per the README.md badges

Hi Thank you for the Prometheus Flask exporter and grafna dashboard exmple which was very helpful to ingest metrics from microservices running in the ECS cluster. I have followed the...

I had it setup and connected to prometheus and saw all of the default metrics for 6 different services I am running. I stopped and then started one of the...

I'm using `metrics.start_http_server` in order to have a separate server on a different port. But the server starts in development mode and all the access logs goes to `stderr`. How...

Do we support RESTfulPrometheusMetrics with gunicorn? Is there an example how to set the metrics?

General Question can you give some pointers if it is possible to use the module to expose metrics related not to request tracking? My goal is to write a prom...

Hello, This more a feature request. Rather than relying on `*_bucket` metrics and the use of `histogram_quantile` function, would it be possible to expose precomputed quantiles as metrics ? The...

Hello, I'm trying to expose statistics from my application in a format like this: ``` # HELP offer_count Per-company count of offers # TYPE offer_count gauge offer_count{company="Foo Corp LLC."} 123...