Differentiating incoming vs outgoing network requests in traces #4047
-
Here's a screenshot of a trace in Jaegar that was generated by running the official OTel JS HTTP Instrumentation example What I lose in this trace is information on whether request is an incoming request or outgoing request. Would it make sense to change the operation name of span to be [INCOMING|OUTGOING] HTTP [HTTP.METHOD] based on spanKind? For example in this case: OUTGOING HTTP GET and INCOMING HTTP GET? FYI, I asked this question on Open Telemetry JS first and they pointed me here. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can reason about this based on the change in the service name between parent and child spans. |
Beta Was this translation helpful? Give feedback.
You can reason about this based on the change in the service name between parent and child spans.