You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other tracer implementations include a setting to force client and server spans to have different spanId's. In Go the setting is WithSharedSpans(false) and in Java it's supportsJoin(false).
There should be something similar in ruby.
This is important because zipkin traces may be reported to non-zipkin backends that might not support the concept of joining spans.
The text was updated successfully, but these errors were encountered:
agree. I encountered a problem when use jaeger client send request to zipkin client, and the backend server is jaeger server. It will report the duplicate span ID.
Other tracer implementations include a setting to force client and server spans to have different spanId's. In Go the setting is
WithSharedSpans(false)
and in Java it'ssupportsJoin(false)
.There should be something similar in ruby.
This is important because zipkin traces may be reported to non-zipkin backends that might not support the concept of joining spans.
The text was updated successfully, but these errors were encountered: