SkyWalking gRPC Exporter and traces #7292
-
Will ever SkyWalking gRPC Exporter export traces in SkyWalking native format? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
From our previous discussion, this may be not possible. At least, it is nearly impossible. The logic behind this is, SkyWalking's trace is designed and built for topology and metrics analysis. So, it sets up all explicit fields and rules when agents build it. If you are interested in the In the meanwhile, exports for metrics and logs are all general adoptive crossing different ecosystems. The exports of those two are existing already. |
Beta Was this translation helpful? Give feedback.
From our previous discussion, this may be not possible. At least, it is nearly impossible.
SkyWalking's trace format includes more information, especially for
parent
part of the RPC entry span, which includesparent service name
,parent instance name
,peer address used in client side
.If you want to translate the Dapper style span(Zipkin's or Jaeger's are similar), you are building a complex aggregation system, which is not worth it.
The logic behind this is, SkyWalking's trace is designed and built for topology and metrics analysis. So, it sets up all explicit fields and rules when agents build it.
If you are interested in the
trace to metrics+topology
part, I have to recommend you use o…