SpringCloudSleuth分布式日志追踪使用记录

Spring Cloud Sleuth官方项目地址:https://spring.io/projects/spring-cloud-sleuth
Sleuth使用示例:https://github.com/openzipkin/sleuth-webmvc-example
Zipkin官方使用说明:https://zipkin.io/pages/quickstart.html
Zipkin项目地址:https://github.com/openzipkin/zipkin

安装Zipkin

从Github上clone项目之后,使用mvn命令build项目,接着执行zipkin-server-*exec.jar,步骤如下:

git clone https://github.com/openzipkin/zipkin
cd zipkin
./mvnw -DskipTests --also-make -pl zipkin-server clean install
java -jar ./zipkin-server/target/zipkin-server-*exec.jar

你可能感兴趣的:(SpringCloudSleuth分布式日志追踪使用记录)