From e99b70c8b7a6a4197f6c6ff232f12cfc6eca2973 Mon Sep 17 00:00:00 2001 From: kulsagar Date: Wed, 10 Jul 2019 14:44:33 -0500 Subject: [PATCH] Update README.md --- .../README.md | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/14.4.Microservices-Creating-A-Zipkin-Server/README.md b/14.4.Microservices-Creating-A-Zipkin-Server/README.md index e55fb75..40b5052 100644 --- a/14.4.Microservices-Creating-A-Zipkin-Server/README.md +++ b/14.4.Microservices-Creating-A-Zipkin-Server/README.md @@ -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 +