We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users have reported facing this issue:
Duplicated timeseries in CollectorRegistry
The proposal to fix it is to change arq-prometheus interfaces and instanciate it outside the startup function and receive the ctx on start.
ctx
start
Example:
arq_prometheus = ArqPrometheusMetrics(delay=delay, enable_webserver=True) async def startup(ctx): ctx["session"] = ClientSession() ctx["arq_prometheus"] = await arq_prometheus.start(ctx)
As of now I don't have the means to reproduce the error, so if you face it, feel free to submit a PR fixing. Maybe the suggested implementation works.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Users have reported facing this issue:
The proposal to fix it is to change arq-prometheus interfaces and instanciate it outside the startup function and receive the
ctx
onstart
.Example:
As of now I don't have the means to reproduce the error, so if you face it, feel free to submit a PR fixing. Maybe the suggested implementation works.
The text was updated successfully, but these errors were encountered: