Spring Initializer - Zipkin Server missing?

2019-04-10 12:11发布

Can't see Zipkin Server when using Spring Initializer . Has it been removed? What is the alternative?

enter image description here

3条回答
淡お忘
2楼-- · 2019-04-10 13:06

Zipkin Server is not part of Spring initializers. You have to use the official release of the Zipkin server

https://github.com/openzipkin/zipkin#quick-start

And custom servers are not supported anymore meaning you can't use @EnableZipkinServer anymore since 2.7

https://github.com/openzipkin/zipkin#quick-start

查看更多
女痞
3楼-- · 2019-04-10 13:08

Lately I have been trying the same and couldn't find that option in initializer. I am just posting this if anyone encounters the same issues and lands on this page. You can refer below sample GitHub project which is consists of four micro services ( zipkin server, client, rest service, and Eureka ) using Edgware release with latest version of sleuth.

Sample Zipkin Server/Client

查看更多
时光不老,我们不散
4楼-- · 2019-04-10 13:08

Spring has deprecated the Zipkin UI and Zipkin server from Spring Boot. You will need to setup external Zipkin server or add the pom as specified above.

You can refer to below URL to setup Zipkin server:

http://onlyfullstack.blogspot.com/2018/07/setting-up-zipkin-server.html

Below URL to integrate Zipking with microservices :

https://onlyfullstack.blogspot.com/2018/09/microservices-with-spring-sleuth-and-zipkin.html

查看更多
登录 后发表回答