试图创建zipkin服务器,在gradle中添加依赖项,如下所示,
compile ("org.springframework.cloud:spring-cloud-starter-zipkin")
compile ("org.springframework.amqp:spring-rabbit")
compile('io.zipkin.java:zipkin-autoconfigure-ui')
另外,
我在application.properties和bootstrap.properties文件中都添加了属性,
application.properties
server.port=8085
bootstrap.properties
spring.application.name=zipkin-server
一旦启动服务器并加载UI页面,就会在UI中获得错误,
发布于 2018-06-24 08:10:20
你好,看到您的屏幕截图--也许您使用的是spring 2.x版本--我在使用Finchley.RELEASE的SpringBoot2.0.3中也遇到了同样的问题。
我发现Zipkin自定义服务器不再受支持,因此不能在Spring代码中使用@EnableZipkinServer,而且您有ui,但没有配置服务器端、api端点等等。
形成Zipkin的基本代码:
/**
* @deprecated Custom servers are possible, but not supported by the community. Please use our
* <a href="https://github.com/openzipkin/zipkin#quick-start">default server build</a> first. If you
* find something missing, please <a href="https://gitter.im/openzipkin/zipkin">gitter</a> us about
* it before making a custom server.
*
* <p>If you decide to make a custom server, you accept responsibility for troubleshooting your
* build or configuration problems, even if such problems are a reaction to a change made by the
* OpenZipkin maintainers. In other words, custom servers are possible, but not supported.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(InternalZipkinConfiguration.class)
@Deprecated
public @interface EnableZipkinServer {
}
代码可在Zipkin的官方回购上使用,我使用带有组合的正式对接者映像来解决我的问题
version: '3.1'
services:
rabbitmq:
image: rabbitmq:3-management
restart: always
ports:
- 5672:5672
- 15671:15671
- 15672:15672
networks:
- messaging
zipkin-server:
image: openzipkin/zipkin
ports:
- 9065:9411
environment:
- zipkin.collector.rabbitmq.uri=amqp://guest:guest@rabbitmq:5672
networks:
- messaging
networks:
messaging:
driver: bridge
你怎么看我用的是流媒体版本。它为我工作
我希望这能帮到你
发布于 2019-01-24 12:47:42
试着用这个:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-server</artifactId>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-autoconfigure-ui</artifactId>
<scope>runtime</scope>
<version>2.12.0</version>
</dependency>
https://stackoverflow.com/questions/50027127
复制相似问题