Helen

Results 126 comments of Helen

@jianchaoxudd I tried to repro locally and followed the steps provided above. **Ran the code as it is**. getting this ``` 2024-08-16T19:36:53.022Z INFO 'success 1 PropagatedSpan{ImmutableSpanContext{traceId=00000000000000000000000000000000, spanId=0000000000000000, traceFlags=00, traceState=ArrayBasedTraceState{entries=[]}, remote=false,...

can you try this if that solves your issue: propagate current context to the next call. ``` try (Scope ignored = Span.current().makeCurrent()) { // context propagation request.handler(protoHello -> { request.response().end(protoHello);...

It can be repro in opentelemetry-javaagent v2.7.0 too.

@jianchaoxudd can you try this, it seems to work now: ``` `**io.opentelemetry.context.Context context = io.opentelemetry.context.Context.current();** Future responseFut = request.response(); responseFut.onSuccess(response -> { response.handler(protoReply -> { **try (Scope ignored2 = context.makeCurrent())...

If the instrumentation can handle the context propagation, that is ideal. however, it can be complicated. that is why there is [doc ](https://opentelemetry.io/docs/languages/java/instrumentation/#context-propagation)like this for suggesting workarounds. i hope this...

> @laurit @SylvainJuge Thank you for your responses. > > I noticed that `SemconvStability` has been removed. > > Should we add SemconvStability back and include these values: > >...