prometheus-async icon indicating copy to clipboard operation
prometheus-async copied to clipboard

Async helpers for prometheus_client.

Results 5 prometheus-async issues
Sort by recently updated
recently updated
newest added

Consul's [service registration API](https://www.consul.io/api-docs/agent/service#register-service) supports a bunch of other parameters apart from the ones implemented in the ConsulAgent class. I'm not familiar with all of them so I'm not sure...

The upstream client supports adding [custom collectors](https://github.com/prometheus/client_python#custom-collectors). Adding support for async collectors would make it possible easily to gather metrics over http for example.

The official python Prometheus client outlines a problem caused by using multiple Gunicorn workers and provides a solution: https://github.com/prometheus/client_python/#multiprocess-mode-gunicorn I am working on an asynchronous web-app using FastAPI with 4...

Hello, apologies if I missed it, but it doesn't seem like there is support yet for the `Counter` metric type?

Hello, I'm currently using aioprometheus in a FastAPI Uvicorn app, but the metric exposure is blocking all the routes: https://github.com/claws/aioprometheus/issues/98 Looking at the official client, it seems that they added...