Spring Cloud Sleuth实现微服务跟踪

一、Spring Cloud Sleuth简介

1.1 了解Sleuth术语

    *span(跨度):基本工作单元。span用一个64位的ID唯一标识。除ID外,span还包括其他数据,例如描述、时间戳事件、键值对的注解、spanId,span父ID等

    *trace(跟踪):一组共享“root span”的span组成的树状结构。trace也用一个64位的ID唯一标识,trace中的所有span都共享该trace的ID

    *annotation(标注):annotation用来记录事件的存在,其中,核心annotation用来定义请求的开始和结束

        -CS(Client Sent客户端发送):客户端发起一个请求,该annotation描述了span的开始

        -SR(Server Received服务器端接收):服务器端获得请求并准备处理它。如果用SR减去CS时间戳,就能得到网络延迟

        -SS(Server Sent服务器端发送):该annotation表明完成请求处理。如果用SS减去SR时间戳,就能得到服务器端处理请求所需的时间

        -CR(Client Received客户端接收):span结束的标识。客户端成功接收到服务器端的响应。如果CR减去CS时间戳,就能得到从客户端发送请求到服务器响应的所需的时间

二、整合Spring Cloud Sleuth

2.1 添加依赖

<dependency>
     	<groupId>org.springframework.cloud</groupId>
     	<artifactId>spring-cloud-starter-sleuth</artifactId>
     	<version>2.0.1.RELEASE</version>
     </dependency>

2.2 修改application.xml

spring.application.name=provider-user
logging.level.root=INFO
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG

三、Spring Cloud Sleuth与ELK配合使用

3.1 安装ELK:https://www.elastic.co/guide/index.html

3.2 添加依赖

<dependency>
     	<groupId>net.logstash.logback</groupId>
     	<artifactId>logstash-logback-encoder</artifactId>
     	<version>4.6</version>
     </dependency>

3.3 在src/main/resources目录下新建文件logback-spring.xml

3.4 新建bootstrap.xml,并将application.xml中的以下属性移到bootstrap.xml

spring.application.name=provider-user

3.5 编写Logstash配置文件,命名为logstash.conf

input{
	file{
		codec =>json
		path => "自己项目打印的json日志文件"
	}
}
filter{
	grok{
		match => {"message" => "xxx"}
	}
}
output{
	elasticsearch{
		hosts => "自己的Elasticsearch地址"
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鹏哥哥啊Aaaa

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值