它还可以在 “Apache SkyWalking” 上运行,支持 Zipkin v1/v2 格式。

属性

  • endpoint: Zipkin 的 http 节点,例如http://127.0.0.1:9411/api/v2/spans
  • sample_ratio: 监听的比例,最小为0.00001,最大为1。
  • service_name: 可选参数,标记当前服务的名称,默认值是APISIX
  • server_addr: 可选参数,标记当前 APISIX 实例的IP地址,默认值是 nginx 的内置变量server_addr。|

下面是一个示例,在指定的 route 上开启了 zipkin 插件:

你可以使用浏览器打开 dashboard:http://127.0.0.1:9080/apisix/dashboard/,通过 web 界面来完成上面的操作,先增加一个 route:

然后在 route 页面中添加 zipkin 插件:

测试插件

e.g. 用docker:

  1. sudo docker run -d -p 9411:9411 openzipkin/zipkin

打开浏览器,访问 Zipkin 的 web 页面:

  1. http://127.0.0.1:9411/zipkin

OpenTracing - 图3

现在就已经移除了 Zipkin 插件了。其他插件的开启和移除也是同样的方法。

上游服务是Golang的示例代码

  1. func GetTracer(serviceName string, port int, enpoitUrl string, rate float64) *zipkin.Tracer {
  2. // create a reporter to be used by the tracer
  3. // set-up the local endpoint for our service host is ip:host
  4. thisip, _ := GetLocalIP()
  5. host := fmt.Sprintf("%s:%d", thisip, port)
  6. endpoint, _ := zipkin.NewEndpoint(serviceName, host)
  7. // set-up our sampling strategy
  8. sampler, _ := zipkin.NewCountingSampler(rate)
  9. // initialize the tracer
  10. tracer, _ := zipkin.NewTracer(
  11. reporter,
  12. zipkin.WithLocalEndpoint(endpoint),
  13. zipkin.WithSampler(sampler),
  14. )
  15. }
  16. func main(){
  17. r := gin.Default()
  18. tracer := GetTracer(...)
  19. // use middleware to extract parentID from http header that injected by APISIX
  20. r.Use(func(c *gin.Context) {
  21. span := this.Tracer.Extract(b3.ExtractHTTP(c.Request))
  22. childSpan := this.Tracer.StartSpan(spanName, zipkin.Parent(span))
  23. defer childSpan.Finish()
  24. c.Next()
  25. })
  26. }