Skip to main content
版本:v1.10.0

通过 Zipkin 观察 Trace

1、下载和运行 Zipkin

请参考 https://zipkin.io/pages/quickstart.html

2、运行 EventMesh

运行 eventmesh-starter(参考 eventmesh-runtime-quickstart)

运行 eventmesh-example(参考 eventmesh-sdk-java-quickstart)

3、相关的设置

eventmesh-runtime/conf/eventmesh.properties 中:

默认的 exporter 是 log,需要手动改成 Zipkin

#trace exporter
eventmesh.trace.exporter.type=Zipkin

下面是关于 Zipkin 的各种配置

#set the maximum batch size to use
eventmesh.trace.exporter.max.export.size=512
#set the queue size. This must be >= the export batch size
eventmesh.trace.exporter.max.queue.size=2048
#set the max amount of time an export can run before getting(TimeUnit=SECONDS)
eventmesh.trace.exporter.export.timeout=30
#set time between two different exports(TimeUnit=SECONDS)
eventmesh.trace.exporter.export.interval=5

#zipkin
eventmesh.trace.export.zipkin.ip=localhost
eventmesh.trace.export.zipkin.port=9411

以上都是相关的配置,如果你十分熟悉 Zipkin 的话可以自行修改。

4、观察

浏览器打开 localhost:9411