Replies: 6 comments 10 replies
-
it sounds like a bug, can you confirm the issue still exists in 2.5.0, and if so, create a small repro and open an issue for it? |
Beta Was this translation helpful? Give feedback.
-
I can confirm it is working in 2.1.0 and not working in 2.2.0, 2.3.0, 2.4.0 nor 2.5.0. |
Beta Was this translation helpful? Give feedback.
-
I've never done it but I can try. |
Beta Was this translation helpful? Give feedback.
-
OK, I managed to compile and create the jar for the current version. But I am struggling to build at version 2.2.0 checkout.
|
Beta Was this translation helpful? Give feedback.
-
I encountered a similar issue and saw the same debug message about the suppressed span on agent version 2.5.0 When I set
|
Beta Was this translation helpful? Give feedback.
-
OK, I have just tried version 2.7.0 and it seems fixed, at least in my case. 2.6.0 was still broken. Anyone else? |
Beta Was this translation helpful? Give feedback.
-
Hi, we have a Java 17 app, auto instrumented using the agent. It uses Spring Boot 3.1/3.2. Until agent version 2.1.0 it was working just fine, no much tuning.
When tried updating to 2.2.0+ it started missing all traces, or at least most of the important ones that we care.
Funny enough we have another app in old Java 8, with an older Spring Boot and it just took it fine.
After some debugging I find this in logs (debug mode on):
satapp | [otel.javaagent 2024-06-19 15:06:33:769 +0000] [supportability_metrics_reporter] DEBUG io.opentelemetry.javaagent.shaded.instrumentation.api.internal.SupportabilityMetrics - Suppressed Spans by 'io.opentelemetry.tomcat-10.0' (SERVER) : 1
That gave a clue, my spans were being suppressed. Then changed the strategy by adding:
and we started receiving the spans as before.
What happened in 2.2.0 that the default is not working anymore? I went trough the change list but cannot see any.
I am not sure how much this will increase the tracing volume in our backend and if it will be worth it. But in any case I'd like to understand cause of the issue and the implications of this workaround.
I appreciate any help on this matter.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions