Abhinav Bhatnagar
Abhinav Bhatnagar

Reputation: 469

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

Upvotes: 7

Views: 3695

Answers (3)

ashish p
ashish p

Reputation: 202

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>

Upvotes: 0

zeagord
zeagord

Reputation: 2367

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

Upvotes: 3

Indra Uprade
Indra Uprade

Reputation: 808

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

Upvotes: 0

Related Questions