使用rxjava2创建多条跟踪

时间:2018-03-21 19:28:09

标签: spring-cloud zipkin spring-cloud-sleuth

我在弹簧靴中使用带有拉链的弹簧云,以跟踪服务电话。

我的春云版是Edgware.RELEASE

现在,当我尝试跟踪使用rxjava的Facade层时,它为单个请求创建了12条跟踪?

我该怎么办?我的意思是我只想为门面层的1个请求生成1个跟踪(外观层使用rxjava进行并行调用)。

我正在使用带有http的slueth,并且如果属性文件

,则没有更改任何属性

我添加了这两个依赖项:

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

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

我在属性文件中添加了:

spring.zipkin.baseUrl: http://172.16.3.197:9411/
spring.slueth.enabled: true
spring.sleuth.sampler.percentage: 1

0 个答案:

没有答案