Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring Initializer - Zipkin Server missing?

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

enter image description here

like image 711
Abhinav Bhatnagar Avatar asked Oct 18 '22 09:10

Abhinav Bhatnagar


1 Answers

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

like image 94
zeagord Avatar answered Oct 21 '22 00:10

zeagord