-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
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
feat: Allow passing a custom registry to be used instead of using the default one #153
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ChuckHend
approved these changes
Jun 21, 2022
I'd love to see this go out! |
…arlette might re-instantiate middleware classes
…ing new middlewares
trallnag
force-pushed
the
allow-custom-registry
branch
from
February 22, 2023 16:41
601b642
to
4d04ef9
Compare
trallnag
changed the title
✨ Allow passing a custom registry to be used instead of using the default one
feat: Allow passing a custom registry to be used instead of using the default one
Feb 22, 2023
Thank you, @tiangolo. Sorry for ignoring your work for a long time |
Hmm I just did a
Before that it worked fine. It tried to debug it. The Prometheus client lib is complaining about duplicate metrics as excepted.
Problems start when updating starlette and fastapi
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✨ Allow passing a custom registry to be used instead of using the default one.
This would be useful in particular when testing multiple FastAPI apps (e.g. microservices) in the same tests run.
This is also related to #80
Note: I'm still having issues with this in different corner cases. The way that the underlying Prometheus Client for Python works is quite weird. It errors out if a metric is duplicated, but there's no way to check if a new metric will create that error or not. And a try block would have to be very generic catching all
ValueError
s. I'm still not sure what's the best way to handle this.