Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions 14.4.Microservices-Creating-A-Zipkin-Server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,20 @@

* Add @EnableZipkinServer annotation to the Main class

@SpringBootApplication
@EnableZipkinServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@SpringBootApplication
@EnableZipkinServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}


* Change the server port to 8085 in application.properties file

* Run all services 14.1, 14.2,14.3, 14.4

* Access 14.3 service http://localhost:8083/fastpass/customer/100

* Access zipkin service http://localhost:8085 observe *dependency* link on the page