2

我目前正在尝试使用https://github.com/opentracing-contrib/java-spring-web使用 Jaeger 跟踪两个 Spring Boot (2.1.1) 应用程序

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

也尝试过没有成功

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

每个服务/应用程序的 Spans 跟踪工作正常,但不能在全局级别上通过 REST 请求。如图所示,服务之间没有显示依赖关系。

2 个应用程序之间的跟踪中缺少应用程序

这不应该通过图书馆开箱即用吗?或者我是否必须自己实现一些拦截器和请求过滤器,如果是这样,如何实现?

您可以在此处检查包含问题的简约项目

顺便说一句:Jaeger 通过 docker 一体式运行并按预期工作

docker run \
--rm \
--name jaeger \
-p5775:5775/udp \
-p6831:6831/udp \
-p6832:6832/udp \
-p5778:5778 \
-p16686:16686 \
-p14268:14268 \
-p9411:9411 \
jaegertracing/all-in-one:latest
4

2 回答 2

5

问题是您正在使用RestTemplate template = new RestTemplate();获取RestTemplateREST 调用的实例。

这样做意味着 Opentracing 无法检测添加必要 HTTP 标头的调用。

请考虑使用@Autowired RestTemplate restTemplate

于 2019-03-20T07:29:23.227 回答
1

您能否尝试使用更新版本的 Jaeger:https ://www.jaegertracing.io/docs/latest/getting-started/#all-in-one - 实际上 1.11 现已发布,因此可以尝试一下。

于 2019-03-19T17:47:45.930 回答