Replies: 1 comment 1 reply
-
Please provide a minimal sample application that reproduces the issue. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use a class with annotated methods. Those methods shall be invoked (and traced). Unfortunately the OpenTelemetry javaagent (1.31.0) is not tracing any methods run through
Method.invoke(...)
.Below is a small sample project (Spring Boot). For demonstration, I just have some methods without any parameters or return types.
My Question: How can I trace
Sample1.logic1()
andSample1.logic2()
when they are run through Reflection API?Beta Was this translation helpful? Give feedback.
All reactions