我已经启动了zipkin-server,可以看到仪表板。我已经用简单的项目测试过了,没关系。但是,当我用我的应用程序对其进行测试时,我遇到了问题。如果在application.properties中将kafka的属性设置为true,则我将产生产生给kafka的Spring Boot项目。在我的情况下,它始终设置为false,并且可以正常工作。但是,当我添加zipkin依赖关系时,它开始发送到kafka。而且我在zipkin仪表板中也看不到我的客户端应用程序。我正在使用Spring Boot 1.5.6.RELEASE版本
这是我的依赖项:
<div
fxFlex
id="visor-video"
*ngIf=displayURL"
>
<iframe
width="300"
height="200"
[src]="displayURL"
></iframe>
</div>
这是我对zipkin和sleuth的属性。
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zipkin</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>
通过添加前三个属性,应用程序不会在开始时发送请求,而是在我向应用程序发送请求后开始。
答案 0 :(得分:1)
尝试通过以下方法更改所有属性:
#Sleuth
spring.sleuth.sampler.percentage=1.0
#Zipkin
spring.zipkin.sender.type=web
spring.sleuth.sampler.percentage = 1.0是Edgware 所以你需要
baseUrl默认为localhost