Zipkin是一个开源的分布式实时数据追踪系统(Distributed Tracking System),每个Service向Zipkin报告请求数据,Zipkin会根据调用关系通过Zipkin UI生成依赖关系图,让开发者通过一个Web前端轻松的收集和分析数据,如用户每次请求服务的处理事件等,可方便分析系统中存在的瓶颈。
Zipkin是一个开源的分布式实时数据追踪系统(Distributed Tracking System),每个Service向Zipkin报告请求数据,Zipkin会根据调用关系通过Zipkin UI生成依赖关系图,让开发者通过一个Web前端轻松的收集和分析数据,如用户每次请求服务的处理事件等,可方便分析系统中存在的瓶颈。
随着业务越来越复杂,系统也随之需要进行拆分,特别是随着微服务架构和容器技术的兴起,看似简单的应用,后端可能需要多个Service的支持。当前端向后发送请求,后端可能需要进行多次Service调用才能完成,当请求变慢或者不可用时,单凭我们无法得知是哪个后端Service引起的,这时就需要快速定位故障点,Zipkin就可以很好的解决这样的问题。
这里我是在Spring Cloud的基础上搭建的Zipkin。
创建Zipkin微服务,并引入依赖,主要是两个zipkin-server
和zipkin-autoconfigure-ui
:
<dependency>
<groupId>io.zipkin.javagroupId>
<artifactId>zipkin-serverartifactId>
<version>2.11.8version>
dependency>
<dependency>
<groupId>io.zipkin.javagroupId>
<artifactId>zipkin-autoconfigure-uiartifactId>
<version>2.11.8version>
dependency>
需要注意的是:
zipkin-server
中包含了log4j-slf4j-impl
这个组件,这可能会与springboot中的logback
重复产生异常如下,如果出现只需在zipkin-server
的dependency中添加
将log4j-slf4j-impl
排除即可。[ERROR] [XXX Enforcer Rules] find DuplicateClasses
Found in:
org.apache.logging.log4j:log4j-slf4j-impl:jar:2.6.2:compile
ch.qos.logback:logback-classic:jar:1.1.7:compile
Duplicate classes:
org/slf4j/impl/StaticMDCBinder.class
org/slf4j/impl/StaticMarkerBinder.class
org/slf4j/impl/StaticLoggerBinder.class
另外引入如下依赖:
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
<version>2.0.4.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-testartifactId>
<scope>testscope>
<exclusions>
<exclusion>
<groupId>org.junit.vintagegroupId>
<artifactId>junit-vintage-engineartifactId>
exclusion>
exclusions>
dependency>
<dependency>
<groupId>org.junit.jupitergroupId>
<artifactId>junit-jupiter-apiartifactId>
<version>5.6.2version>
<scope>testscope>
dependency>
dependencies>
修改配置文件:
# 将zipkin注册到erueka上
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka
# 配置zipkin端口
server:
port: 8769
# 配置服务名字
spring:
application:
name: spring-cloud-zipkin2
上面就是我们给zipkin的配置,但是若是在启动过程中报出异常[java.lang.IllegalArgumentException: Prometheus requires that all meters with the same name have the same set of tag keys.]
,此时我们就需要在配置文件中添加:
management:
metrics:
web:
server:
auto-time-requests: false
修改Application添加注解@EnableEurekaClient
以及EnableZipkinServer
。
package com.giotto.demozipkin2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import zipkin2.server.internal.EnableZipkinServer;
@SpringBootApplication
@EnableEurekaClient
@EnableZipkinServer
public class DemoZipkin2Application {
public static void main(String[] args) {
SpringApplication.run(DemoZipkin2Application.class, args);
}
}
当ZipkinServer端配置好后,我们同样需要在Service中配置Zipkin,这样才能将数据实时发送到ZipkinServer,首先给需要配置Zipkin的Service添加如下依赖:
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-sleuthartifactId>
dependency>
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-sleuth-zipkinartifactId>
dependency>
在配置文件中,配置Zipkin:
spring:
zipkin:
base-url: http://localhost:port
sleuth:
sampler:
probability: 1.0
启动后,只需访问http://localhost:port/zipkin/
即可。