calculate the number of calls of parent and child applications in real time #2408
Unanswered
wangquanchn
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You can't add the parent's name to each span. A key/value store would allow you to solve that easily. You probably don't need more than 15 minutes of data retention, since the links you'll need to do should always be around the same time window. |
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
-
Hi everyone,
I successfully got the trace data with otel-go lib,
and the flow path is this: my-go-app -> collector -> kafka -> java consumer(custom business) -> ... .
now I need to calculate the number of calls of parent and child applications in real time,
when a message is received from kafka,
in every span, I get trace_id,span_id,parent_id, current span's service_name,
I can't get the parent's service_name. sad.
Beta Was this translation helpful? Give feedback.
All reactions