27.Spring Cloud Sleuth使用消息中间件收集数据

前面已经介绍了使用HTTP直接收集跟踪数据,下面演示使用消息中间件收集跟踪数据。相比HTTP的方式。消息中间件有以下好处:

微服务与ZipkinServer解耦,微服务无须知道ZipkinServer的网络地址。

一些场景下,ZipkinServer与微服务网络可能不同,使用HTPP直接收集的方式无法工作,此时可借助消息中间件实现数据收集。

ZipkinServer

pom.xml

	
		
			io.zipkin.java
			zipkin-autoconfigure-ui
		

		
			io.zipkin.java
			zipkin-server
		

		
		
			org.springframework.cloud
			spring-cloud-stream-binder-rabbit
		

		
			org.springframework.cloud
			spring-cloud-sleuth-zipkin-stream
		

application.properties

需要添加消息中间件连接信息(以rabbitmq为例)

server.port=9411
#注册中心地址
eureka.client.serviceUrl.defaultZone=http://testhost:8000/eureka/,http://testhost2:8001/eureka/
#把客户端的检测检测交给actuator来完成
eureka.client.healthcheck.enabled=true
spring.application.name=zipkin-server

spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=springcloud
spring.rabbitmq.password=123456

启动类

package com.niugang;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.sleuth.zipkin.stream.EnableZipkinStreamServer;


/**
 * zipserver启动类
 * @author niugang
 *
 */
@SpringBootApplication
@EnableDiscoveryClient
@EnableZipkinStreamServer
public class Application {
	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}

各微服务需要调整的地方

pom.xml



	org.springframework.cloud
	spring-cloud-stream-binder-rabbit


	org.springframework.cloud
	spring-cloud-starter-sleuth


	org.springframework.cloud
	spring-cloud-sleuth-stream

application.properties

需要添加消息中间件连接信息(以rabbitmq为例)


#指定微服务的名称后续在调用的时候只需要使用该名称就可以进行服务的访问
spring.application.name=ribbon-consumer-trace-zipkin
server.port=9001
#负载平衡RestTemplate可以配置为重试失败的请求。默认情况下,该逻辑被禁用
spring.cloud.loadbalancer.retry.enabled=true
#注册中心地址
eureka.client.serviceUrl.defaultZone=http://testhost:8000/eureka/
logging.level.root=info
#注意:您可以设置logging.level.org.springframework.web.servlet.DispatcherServlet = DEBUG,而不是在处理程序中明确记录请求。
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
spring.sleuth.sampler.percentage=1.0
#rabbitmq相关配置
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=springcloud
spring.rabbitmq.password=123456

配置以上,启动注册中心,zipkinserver,各个微服务。访问http://localhost:9411/查看追踪收集的数据。

   

                                                                             微信公众号: 

                                               27.Spring Cloud Sleuth使用消息中间件收集数据_第1张图片

                                                                             JAVA程序猿成长之路

                                                       分享学习资源,学习方法,记录程序员生活。

你可能感兴趣的:(spring-cloud)