Need help troubleshooting Micrometer integration #5200
-
Hello! I was really excited to see the Micrometer bridge work land in v1.10 🎉#4919 I promptly tested out the new 1.10 javaagent, which is configured to push metrics over OTLP which I know is working because I already get JVM metrics from these apps, on some of my Kotlin apps that are instrumented with Micrometer but I'm still not seeing my Micrometer metrics flowing through the OTel pipeline. When I turn on debug logs for the javaagent I can see the relevant instrumentation transforming the Micrometer library, and my app is definitely manipulating metrics via Micrometer because the existing Prometheus integration is still working. I also tried setting So, I'm wondering, what else can I do to troubleshoot why the javaagent isn't picking up my Micrometer metrics? Any help would be greatly appreciated, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
hey @chris-pinola-rf! the agent registers its |
Beta Was this translation helpful? Give feedback.
hey @chris-pinola-rf! the agent registers its
MeterRegistry
into the micrometer global registry, maybe you are using dependency injection ofMeterRegistry
instead of using the global registry? it would be good to understand if this is the case and what we would need to do to cover more cases like that