spacewander commented on a change in pull request #6302: URL: https://github.com/apache/apisix/pull/6302#discussion_r805533237
########## File path: docs/zh/latest/plugins/zipkin.md ########## @@ -125,6 +125,61 @@ http://127.0.0.1:9411/zipkin  +### Run the Jaeger instance + +除了对接 Zipkin,该插件也支持将 traces 上报到 Jaeger。下面运行在`docker`环境上的示例: Review comment: ```suggestion 除了对接 Zipkin,该插件也支持将 traces 上报到 Jaeger。下面运行在 docker 环境上的示例: ``` ########## File path: docs/en/latest/plugins/zipkin.md ########## @@ -126,6 +127,61 @@ http://127.0.0.1:9411/zipkin  +### Run the Jaeger instance + +Besides Zipkin, this plugin supports reporting the traces to Jaeger as well. Here is a sample run on docker. +Run Jaeger backend on docker first: + +``` +docker run -d --name jaeger \ + -e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \ + -p 16686:16686 \ + -p 9411:9411 \ + jaegertracing/all-in-one:1.31 +``` + +Create a route with Zipkin plugin like Ziplin's example: Review comment: ```suggestion Create a route with Zipkin plugin like Zipkin's example: ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
