You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/02/17 08:51:59 UTC

[1/2] camel git commit: Refines zipkin download instructions

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 <ad...@users.noreply.github.com>
Authored: Fri Feb 17 09:24:22 2017 +0100
Committer: Claus Ibsen <da...@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
 


[2/2] camel git commit: Refines zipkin download instructions

Posted by da...@apache.org.
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/b8c6386b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b8c6386b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b8c6386b

Branch: refs/heads/camel-2.18.x
Commit: b8c6386be340f2ff88413eedda8bbc82bf02392d
Parents: a9539a3
Author: Adrian Cole <ad...@users.noreply.github.com>
Authored: Fri Feb 17 09:24:22 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Feb 17 09:51:55 2017 +0100

----------------------------------------------------------------------
 examples/camel-example-zipkin/README.md | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b8c6386b/examples/camel-example-zipkin/README.md
----------------------------------------------------------------------
diff --git a/examples/camel-example-zipkin/README.md b/examples/camel-example-zipkin/README.md
index b22e423..ffe18a3 100644
--- a/examples/camel-example-zipkin/README.md
+++ b/examples/camel-example-zipkin/README.md
@@ -66,14 +66,22 @@ You can then click on each span and get annotated data from the Camel exchange a
 ![Zipkin Web Console Span Details](images/zipkin-web-console-2.png "Detail of the span")
 
 
-### Installing Zipkin Server using Docker
+### Installing Zipkin Server 
 
-If you want to try Zipkin locally then you quickly try that using Docker.
+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.
 
-There is a [quickstart guide at zipkin](http://zipkin.io/pages/quickstart.html) that has further instructions.
-Remember to configure the IP address and port number in the `application.properties` file.
+```bash
+wget -O zipkin.jar 'https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec'
+```
+
+.. and then run it
+
+```bash
+java -jar zipkin.jar
+```
+
+Finally, browse to http://localhost:9411 to find traces!
 
-You can find the IP using `docker-machine ls`
 
 ### Forum, Help, etc