Go-micro zipkin binding problem

want to perform chain tracking of microservices through zpikin, but the results are not displayed as expected

refer to https://mp.weixin.qq.com/s/Jk.

clipboard.png

the result is so scattered

do you have any information about the combination of micro zipkin? Baidu, Google did not find

Mar.11,2021

the TraceID you serve is inconsistent, TraceID is in context.
for example, the RPC interface of A module: SayHello (ctx context.Context, in pb.XXX) (out pb.XXX, err error), interface ctx needs to be passed into B module's Client call, and the Client call also needs to add Client's call chain blocker.
you can monitor if there are cases in zipkin's examples.

Menu