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
{{ message }}
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
/**
* When present, {@link #timestamp()} is the moment a producer sent a message to a destination.
* {@link #duration()} represents delay sending the message, such as batching, while {@link
* #remoteEndpoint()} indicates the destination, such as a broker.
*
*
Unlike {@link #CLIENT}, messaging spans never share a span ID. For example, the {@link
* #CONSUMER} of the same message has {@link #parentId()} set to this span's {@link #id()}.
In Spring Cloud GCP, we integrate Zipkin with Stackdriver Trace, so traces processed by Zipkin are stored in Stackdriver Trace.
We do a mapping of Zipkin to Stackdriver Trace span kind, but Stackdriver Trace doesn't have an obvious mapping for PRODUCER and CONSUMER.
Would it make sense to add them to Stackdriver Trace as well?
My gut feeling is that, because PRODUCER and CONSUMER don't share their trace ID with any spans, it can probably left out as UNSPECIFIED, but would like to double check this with the Stackdriver Trace team.
The text was updated successfully, but these errors were encountered:
Not sure if this is the correct place to file this issue. Please let me know if I should be knocking at someone else's door.
Besides
CLIENT
andSERVER
span types, Zipkin also contemplatesPRODUCER
andCONSUMER
spans.For example, for
PRODUCER
, JavaDoc says:In Spring Cloud GCP, we integrate Zipkin with Stackdriver Trace, so traces processed by Zipkin are stored in Stackdriver Trace.
We do a mapping of Zipkin to Stackdriver Trace span kind, but Stackdriver Trace doesn't have an obvious mapping for
PRODUCER
andCONSUMER
.Would it make sense to add them to Stackdriver Trace as well?
My gut feeling is that, because
PRODUCER
andCONSUMER
don't share their trace ID with any spans, it can probably left out asUNSPECIFIED
, but would like to double check this with the Stackdriver Trace team.The text was updated successfully, but these errors were encountered: