Java之 Spring Cloud 微服务的链路追踪 Sleuth 和 Zipkin(第三个阶段)【SpringBoot项目实现商品服务器端是调用
在Spring Cloud微服务链路追踪的第三部分中,我们将介绍如何在Spring Cloud微服务中集成Spring Cloud Sleuth进行链路追踪,并将追踪信息发送到Zipkin服务器进行展示。
首先,在pom.xml中添加Sleuth和Zipkin的依赖:
<dependencies>
<!-- Spring Cloud Sleuth -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<!-- Zipkin -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
</dependency>
</dependencies>
然后,在application.properties或application.yml中配置Zipkin服务器的地址:
# application.properties
spring.zipkin.base-url=http://localhost:9411
spring.sleuth.sampler.probability=1.0 # 设置为1.0表示记录所有请求,可以根据需要调整采样率
最后,启动Zipkin服务器并运行你的微服务应用,你将能够在Zipkin UI中看到服务间调用的追踪信息。
这里的spring.zipkin.base-url
是你的Zipkin服务器的地址,spring.sleuth.sampler.probability
是链路追踪的采样率,设置为1.0时表示记录所有的请求信息,设置为0.1时则仅记录10%的请求信息,可以根据实际情况进行调整以平衡追踪信息的记录和性能的影响。
以上步骤完成后,你的微服务应用将会向Zipkin服务器报告链路追踪信息,并且可以在Zipkin UI上查看服务间调用的追踪图。
评论已关闭