Spring boot Spring Boot应用程序与Spring Cloud Sleuth在Istio中与Jaeger集成

Spring boot Spring Boot应用程序与Spring Cloud Sleuth在Istio中与Jaeger集成,spring-boot,istio,spring-cloud-sleuth,jaeger,opentracing,Spring Boot,Istio,Spring Cloud Sleuth,Jaeger,Opentracing,如果我需要在Istio中向Jaeger报告跟踪,我想知道spring boot应用程序在依赖项方面的最低配置是什么 我只想通过添加 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sleuth</artifactId> </dependency> org.springfra

如果我需要在Istio中向Jaeger报告跟踪,我想知道spring boot应用程序在依赖项方面的最低配置是什么

我只想通过添加

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

org.springframework.cloud

在侦探依赖的情况下是不够的。需要哪些依赖项?我可以看到几个依赖项似乎做了类似于前一个的事情,比如

<dependency>
  <groupId>io.opentracing.contrib</groupId>
  <artifactId>opentracing-spring-jaeger-web-starter</artifactId>
</dependency>

io.opentracing.contrib
opentracing spring jaeger web启动器

提前感谢。

有同样的问题/顾虑。如果我看到这方面的解决方案,将进行更新。
<dependency>
  <groupId>io.opentracing.contrib</groupId>
  <artifactId>opentracing-spring-jaeger-web-starter</artifactId>
</dependency>