Closed Marusyk closed 4 years ago
I have some message handler
using (var scope = _tracer.BuildSpan("processing-event").StartActive(true)) { await ProcessEvent(message); }
Inside ProcessEvent I run some service that call entity framework 2 times. In a result I got 3 separate spans.
ProcessEvent
Should not it be one span processing-event with 2 childs? How can I achieve that?
processing-event
any help? @cwe1ss could you please suggest?
I have some message handler
Inside
ProcessEvent
I run some service that call entity framework 2 times. In a result I got 3 separate spans.Should not it be one span
processing-event
with 2 childs? How can I achieve that?