-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
I have a simple Kafka Streams API based application doing just the following processing:
builder.stream(this.topicIn, Consumed.with(Serdes.String(), Serdes.String()))
.mapValues(s -> s.toUpperCase())
.to(this.topicOut);When it's instrumented by using the consumer and producer interceptors, I can see two spans: receive and send.
I expect the process span missing because it's something I should add somehow in the application when doing the mapValues I guess (which instead happens automatically by using the java agent).
The issue I see is that the two spans are completely unrelated, so send is not child of receive.
When using interceptors across two different applications (a producer and consumer), the receive is child of send as expected.
My thought is because of the following in the TracingConsumer implementation https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/kafka/kafka-clients/kafka-clients-2.6/library/src/main/java/io/opentelemetry/instrumentation/kafkaclients/TracingConsumerInterceptor.java#L26
It build and finish the span, linking to an existing one (in the case of a send -> receive) but doesn't take into account that the receive could be followed by a send (and maybe a process in the middle).
How do we should deal with this from a tracing point of view?