From 985a855133667d085055a6da0a3419c9a7805819 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 23 May 2016 10:09:06 +0200 Subject: [PATCH] Sync docs from master to gh-pages --- spring-cloud-sleuth.html | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/spring-cloud-sleuth.html b/spring-cloud-sleuth.html index a09a2a542..4e1ad7ab8 100644 --- a/spring-cloud-sleuth.html +++ b/spring-cloud-sleuth.html @@ -873,8 +873,12 @@ the Spring BOM

<groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-stream</artifactId> </dependency> - <!-- EXAMPLE FOR RABBIT BINDING --> <dependency> (3) + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-sleuth</artifactId> + </dependency> + <!-- EXAMPLE FOR RABBIT BINDING --> + <dependency> (4) <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream-binder-rabbit</artifactId> </dependency> @@ -890,6 +894,9 @@ the Spring BOM

Add the dependency to spring-cloud-sleuth-stream

  • +

    Add the dependency to spring-cloud-starter-sleuth - that way all dependant dependencies will be downloaded

    +
  • +
  • Add a binder (e.g. Rabbit binder) to tell Spring Cloud Stream what it should bind to

  • @@ -905,8 +912,9 @@ the Spring BOM

    dependencies { compile "org.springframework.cloud:spring-cloud-sleuth-stream" (2) + compile "org.springframework.cloud:spring-cloud-starter-sleuth" (3) // Example for Rabbit binding - compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit" (3) + compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit" (4) } @@ -920,6 +928,9 @@ the Spring BOM

    Add the dependency to spring-cloud-sleuth-stream

  • +

    Add the dependency to spring-cloud-starter-sleuth - that way all dependant dependencies will be downloaded

    +
  • +
  • Add a binder (e.g. Rabbit binder) to tell Spring Cloud Stream what it should bind to

  • @@ -950,8 +961,12 @@ dependency

    <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-zipkin-stream</artifactId> </dependency> - <!-- EXAMPLE FOR RABBIT BINDING --> <dependency> (3) + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-sleuth</artifactId> + </dependency> + <!-- EXAMPLE FOR RABBIT BINDING --> + <dependency> (4) <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream-binder-rabbit</artifactId> </dependency> @@ -967,6 +982,9 @@ the Spring BOM

    Add the dependency to spring-cloud-sleuth-zipkin-stream

  • +

    Add the dependency to spring-cloud-starter-sleuth - that way all dependant dependencies will be downloaded

    +
  • +
  • Add a binder (e.g. Rabbit binder) to tell Spring Cloud Stream what it should bind to

  • @@ -982,8 +1000,9 @@ the Spring BOM

    dependencies { compile "org.springframework.cloud:spring-cloud-sleuth-zipkin-stream" (2) + compile "org.springframework.cloud:spring-cloud-starter-sleuth" (3) // Example for Rabbit binding - compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit" (3) + compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit" (4) } @@ -997,6 +1016,9 @@ the Spring BOM

    Add the dependency to spring-cloud-sleuth-zipkin-stream

  • +

    Add the dependency to spring-cloud-starter-sleuth - that way all dependant dependencies will be downloaded

    +
  • +
  • Add a binder (e.g. Rabbit binder) to tell Spring Cloud Stream what it should bind to

  • @@ -2053,7 +2075,7 @@ To disable Zuul support set the spring.sleuth.zuul.enabled property