Does auto-instrumentation create spans during transform operation on KStream #5704
Unanswered
itsmaneesh
asked this question in
Q&A
Replies: 1 comment 1 reply
-
hi @itsmaneesh! you can capture additional spans using |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have a requirement where I need to create spans while performing transform operation on KStream object.
Auto-instrumentation doesn't seem to create spans automatically during this transform operation.
for e.g.:
streamsBuilder.stream(myTopic.getTopicName()).transform(
// needed a span for the below TransformSupplier
() -> new Transformer<Object, Object, KeyValue<Object, Object>>() {
private ProcessorContext context;
I have observed that there no span created automatically with auto-instrumentation. But, wanted to check your advice to achieve the requirement.
Beta Was this translation helpful? Give feedback.
All reactions