服务跟踪的具体步骤
sleuth系统自动埋点并把数据发给zipkin,ziplin负责存储和展示数据。
具体实现
cmd执行jar
代码执行(server、licent都需要配)
<!-- 添加jar --> <!-- 服务跟踪 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zipkin</artifactId> </dependency> #配置 spring: zipkin: base-url: http://localhost:9411 sleuth: sampler: # 0 请求不跟踪; 1请求跟踪 percentage: 1
打开浏览器访问:http://localhost:9411
标签:sleuth,http,zipkin,spring,9411,链路,Sleuth,cloud From: https://www.cnblogs.com/zhougongjin/p/17116183.html