在需要加入sleuth的项目pom文件中添加依赖
```
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
```
为方便观察,调整下日志级别:
```
logging:
level:
org.springframework.cloud.openfeign: debug
```
查看效果

