Support for extending Micrometer tags
See original GitHub issueI want to be able to extend the tags added to a gauge in the micrometer library.
But currently all classes responsible for metrics tags have a private constructor and thus cannot be easily extended.
TaggedRetryMetrics
TaggedCirciutBreakerMetrics
TaggedBulkheadMetrics
TaggedRateLimiterMetrics
Could you make the classes extendable or add a way I could provide the bean as in RetryMetricsAutoConfiguration
myself that is not a closed class?
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:44 (38 by maintainers)
Top Results From Across the Web
Micrometer Metrics - Quarkus
Micrometer uses MeterFilter instances to customize the metrics emitted by MeterRegistry instances. The Micrometer extension will detect MeterFilter CDI beans ...
Read more >Dynamic Meters and Metrics with Micrometer | by Aviad Pines
Since in Micrometer, a meter ID is defined by its name and tags (key-value pairs), the tag value determines the meter, and different...
Read more >Metrics and Management - Spring
Now, with Micrometer, you can add MeterFilter s to the MeterRegistry to prevent some or all from being registered. You can filter out...
Read more >Defining custom metrics in a Spring Boot application using ...
Micrometer is a dimensional metrics and monitoring facade to help ... means that you can tag your metrics with an arbitrary number of...
Read more >Micrometer Application Monitoring
Whether the system supports metric names to be enriched with tag key/value pairs. ... public interface Timer extends Meter { ... void record(long...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In Spring Boot:
@RobWin i will add MicroMeter and Prometheus tag treatment.