spring cloud zipkin 链路追踪

匿名 (未验证) 提交于 2019-12-02 23:42:01

Zipkin 链路追踪

引入依赖

<dependency>

<groupId>org.springframework.cloud</groupId>

<artifactId>spring-cloud-sleuth-zipkin</artifactId>

</dependency>

随后使用docker 启动 zipkin镜像

docker run -d --net=host openzipkin/zipkin

输入网址进入页面

http://localhost:9411/zipkin/

接下来配置yml文件

#链路追踪

zipkin:

base-url: http://localhost:9411/zipkin/

#抽样百分比

sleuth:

sampler:

probability: 1

再进入页面选择服务查询即可。

文章来源: https://blog.csdn.net/qq_36760953/article/details/91460739
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!