Spring Initializer - Zipkin Server missing?
Asked Answered
C

3

7

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

enter image description here

Chancechancel answered 12/7, 2017 at 0:40 Comment(0)
T
3

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

Twigg answered 2/5, 2018 at 4:24 Comment(0)
C
0

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

Closeup answered 9/4, 2018 at 1:6 Comment(0)
F
0

Create spring starter project and add the below dependencies manually.

<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>
    <version>2.12.0</version>
</dependency>
Forney answered 24/10, 2022 at 12:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.