Repository: camel
Updated Branches:
  refs/heads/camel-2.18.x a9539a33e -> b8c6386be
  refs/heads/master 4c83320d8 -> 78d7a81b7


Refines zipkin download instructions

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/78d7a81b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/78d7a81b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/78d7a81b

Branch: refs/heads/master
Commit: 78d7a81b7a1251ceb3eabb11d3cc61ca28ba0206
Parents: 4c83320
Author: Adrian Cole <adrianc...@users.noreply.github.com>
Authored: Fri Feb 17 09:24:22 2017 +0100
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Fri Feb 17 09:50:34 2017 +0100

----------------------------------------------------------------------
 examples/camel-example-zipkin/README.md | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/78d7a81b/examples/camel-example-zipkin/README.md
----------------------------------------------------------------------
diff --git a/examples/camel-example-zipkin/README.md 
b/examples/camel-example-zipkin/README.md
index 8658a6b..c852c56 100644
--- a/examples/camel-example-zipkin/README.md
+++ b/examples/camel-example-zipkin/README.md
@@ -68,18 +68,19 @@ You can then click on each span and get annotated data from 
the Camel exchange a
 
 ### Installing Zipkin Server 
 
-If you want to try Zipkin locally then you quickly download an uber JAR 
(standalone-hystrix-dashboard) 
+The quickest way to get Zipkin started is to fetch the [latest released 
server](https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec)
 as a self-contained executable jar.
+
+```bash
+wget -O zipkin.jar 
'https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec'
+```
 
-  
<http://search.maven.org/remotecontent?filepath=com/github/kennedyoliveira/standalone-hystrix-dashboard/1.5.3/standalone-hystrix-dashboard-1.5.3-all.jar>
-    
 .. and then run it
-    
-    java -jar standalone-hystrix-dashboard-1.5.3-all.jar
-     
-And the console is available at:
-     
-    http://localhost:7979/hystrix-dashboard/
 
+```bash
+java -jar zipkin.jar
+```
+
+Finally, browse to http://localhost:9411 to find traces!
 
 ### Installing Zipkin Server using Docker
 

Reply via email to