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
Consider adding metrics in prometheus format. We should use Micrometer 1.9.12 (or higher but compatible with Spring Boot 2.7.x)
The text was updated successfully, but these errors were encountered:
For example see
The most important thing here is that metrics can't be binded during bean creation. It leads to circular dependency. Should use this pattern
@Override public void onApplicationEvent(ApplicationStartedEvent event) { ... this.tomcatMetrics.bindTo(this.meterRegistry); }
Sorry, something went wrong.
After migration to Spring Boot 3. Consider to use Micrometer Observation
No branches or pull requests
Consider adding metrics in prometheus format.
We should use Micrometer 1.9.12 (or higher but compatible with Spring Boot 2.7.x)
The text was updated successfully, but these errors were encountered: