一、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地址"
}
}