Zipkin客户端无法连接到Zipkin服务器

我已经启动了zipkin-server,可以看到仪表板。我已经用简单的项目测试过了,没关系。但是,当我用我的应用程序对其进行测试时,我遇到了问题。如果在application.properties中将kafka的属性设置为true,则我将产生产生给kafka的Spring Boot项目。在我的情况下,始终将其设置为false,并且可以正常工作。但是,当我添加zipkin依赖关系时,它开始发送到kafka。而且我在zipkin仪表板中也看不到我的客户端应用程序。我正在使用Spring Boot 1.5.6.RELEASE版本


这是我的依赖项:


    <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>

这是我对zipkin和sleuth的属性。


#Sleuth

spring.sleuth.scheduled.enabled=false

spring.sleuth.async.enabled=false

spring.sleuth.annotation.enabled=false

spring.sleuth.enabled = true 

spring.sleuth.sampler.probability=1.0

#Zipkin

spring.zipkin.baseUrl = http://localhost:9411 

logging.pattern.level=%d{ABSOLUTE} [%X{X-B3-TraceId}/%X{X-B3-SpanId}] %-5p [%t] %C{2} - %m%n

通过添加前三个属性,应用程序不会在开始时发送请求,而是在我向应用程序发送请求后开始。


小唯快跑啊
浏览 209回答 1
1回答

眼眸繁星

尝试使用以下方法更改所有属性:#Sleuthspring.sleuth.sampler.percentage=1.0#Zipkinspring.zipkin.sender.type=webspring.sleuth.sampler.percentage = 1.0是Edgware,因此您需要默认情况下,baseUrl是localhost
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java