Helen
Helen
@vap78 can you please provide us a self-diagnostics log at the TRACE level? We want to confirm if tomcat 7 and jakarta servlet are both present in your application, which...
@vap78 trace log confirmed that both jakarta and tomcat7 are present. Upstream has a fix, release is coming out today or early next week. We'll integrate it in version 3.6.0,...
I will add 'error.type' and the opt-in `db.query.parameter.` in a follow-up PR.
check here: https://github.com/open-telemetry/semantic-conventions/blob/3146dc01dc4ab477549f51ceed3b8f8cb98b5829/specification/metrics/semantic_conventions/system-metrics.md#systemos---os-specific-system-metrics
Please check out this doc https://opentelemetry.io/docs/languages/java/instrumentation/#context-propagation-between-threads. Hope that helps.
it looks like there was the same ask from opentelemetry-python https://github.com/open-telemetry/opentelemetry-python/issues/3392
> > I'm not sure about the value of this. As far as I know Gregor has something broken in his setup that prevents him from debugging by just hitting...
can you try this: ```java try (Scope ignored = Context.current().makeCurrent()) { // **makeCurrent()** assert Context.current() == ctx; ... } ```
@ajaparicio don't worry about that assert statement, can you try this instead: ``` private void executeSomethingWithStreams() { Context context = Context.current(); Integer sum = IntStream.rangeClosed(0, 3) .parallel() .peek(i -> {...
Context propagation is done automatically in [these instrumentations](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/executors/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/executors) It is not handled automatically in this case. I don't know if it can be implemented in the future. It will require...