当前位置:   article > 正文

SpringCloud——分布式请求链路追踪 SpringCloud Sleuth_springcloud请求链路

springcloud请求链路

1. 概述

微服务框架中,一个由客户端发起的请求在后端系统中会经过多个不同的的服务节点调用来协同产生最后的请求结果,每一个前段请求都会形成一 条复杂的分布式服务调用链路,链路中的任何一环出现高延时或错误都会弓|起整个请求最后的失败。

Spring Cloud Sleuth 提供了一套完整的服务跟踪解决方案,并且兼容支持了zipkin。

官网: https://github.com/spring-cloud/spring-cloud-sleuth

2.  搭建链路监控

2.1 zipkin

SpringCloud 从 F 版起已不需要自己构建 Zipkin server 了,只需要调用 jar 包即可。

下载 jar: https://dl.bintray.com/openzipkin/maven/io/zipkin/java/zipkin-server/

下载: zipkin-server-2.12.9.exec.jar

运行 jar:java -jar zipkin-server-2.12.9-exec.jar

 

控制台: http://localhost:9411/zipkin/

zipkin 工作原理:

一条链路通过 Trace Id 唯一标识,Span标识发起的请求信息,各 span 通过 parent id 关联起来。

Trace: 类似于树结构的 Span 集合,表示一条调用链路,存在唯一标识。

span:表示调用链路来源,通俗的理解span就是一次请求信息。

 

 

2.2 服务提供者

cloud-provider-payment8001

pom 添加依赖:

  1. <!--包含了sleuth+zipkin-->
  2. <dependency>
  3. <groupId>org.springframework.cloud</groupId>
  4. <artifactId>spring-cloud-starter-zipkin</artifactId>
  5. </dependency>

yml:

  1. server:
  2. port: 8001
  3. spring:
  4. application:
  5. name: cloud-payment-service
  6. datasource:
  7. type: com.alibaba.druid.pool.DruidDataSource
  8. driver-class-name: org.gjt.mm.mysql.Driver
  9. url: jdbc:mysql://localhost:3306/mycloud?useUnicode=true&characterEncoding=utf-8&useSSL=false
  10. username: root
  11. password: mysql
  12. zipkin:
  13. base-url: http://localhost:9411
  14. sleuth:
  15. sampler:
  16. probability: 1 # 采样率,介于0-1之间,1表示全部采集
  17. eureka:
  18. client:
  19. register-with-eureka: true
  20. fetchRegistry: true
  21. service-url:
  22. defaultZone: http://eureka7001.com:7001/eureka
  23. instance:
  24. instance-id: payment8001
  25. prefer-ip-address: true

业务类:

  1. @GetMapping("/payment/zipkin")
  2. public String paymentZipkin()
  3. {
  4. return "hi ,i'am paymentZipkin server fall back O(∩_∩)O哈哈~";
  5. }

2.3 服务消费者

cloud-consumer-order80

pom 添加依赖:

  1. <!--包含了sleuth+zipkin-->
  2. <dependency>
  3. <groupId>org.springframework.cloud</groupId>
  4. <artifactId>spring-cloud-starter-zipkin</artifactId>
  5. </dependency>

yml:

  1. server:
  2. port: 80
  3. spring:
  4. application:
  5. name: cloud-order-service
  6. zipkin:
  7. base-url: http://localhost:9411
  8. sleuth:
  9. sampler:
  10. probability: 1 # 采样率,介于0-1之间,1表示全部采集
  11. eureka:
  12. client:
  13. register-with-eureka: true
  14. fetchRegistry: true
  15. service-url:
  16. defaultZone: http://eureka7001.com:7001/eureka

业务类:

  1. @GetMapping("/consumer/payment/zipkin")
  2. public String paymentZipkin()
  3. {
  4. String result = restTemplate.getForObject("http://localhost:8001"+"/payment/zipkin/", String.class);
  5. return result;
  6. }

2.4 测试

多次访问:http://localhost/consumer/payment/zipkin  80 调用8001

http:localhost:9411

 

 

 

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号