Let's add the Zipkin server to your machine, you can create the Zipkin server application by using the following Maven Zipkin dependencies:
<dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-server</artifactId></dependency><dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-autoconfigure-ui</artifactId> <scope>runtime</scope></dependency>
The preceding Maven dependencies have the Zipkin server and Zipkin UI application, but you have to enable it by using an annotation.
It will be a Spring Boot application and enable the Zipkin server by using the @EnableZipkinServer annotation in the main application class:
@SpringBootApplication@EnableZipkinServerpublic class ZipkinServerApplication ...