spring cloud zipkin 链路追踪
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