diff --git a/2.0.x/multi/multi__introduction.html b/2.0.x/multi/multi__introduction.html index dd9978448..6926954b2 100644 --- a/2.0.x/multi/multi__introduction.html +++ b/2.0.x/multi/multi__introduction.html @@ -138,7 +138,8 @@ Span span = tracer.getCurrentSpan(); String baggageKey = "key"; String baggageValue = "foo"; span.setBaggageItem(baggageKey, baggageValue); -tracer.addTag(baggageKey, baggageValue);

1.3 Adding to the project

1.3.1 Only Sleuth (log correlation)

If you want to profit only from Spring Cloud Sleuth without the Zipkin integration just add +tracer.addTag(baggageKey, baggageValue);

1.3 Adding to the project

[Important]Important

To ensure that your application name is properly displayed in Zipkin + set the spring.application.name property in bootstrap.yml.

1.3.1 Only Sleuth (log correlation)

If you want to profit only from Spring Cloud Sleuth without the Zipkin integration just add the spring-cloud-starter-sleuth module to your project.

Maven. 

<dependencyManagement> 1
          <dependencies>
diff --git a/2.0.x/single/spring-cloud-sleuth.html b/2.0.x/single/spring-cloud-sleuth.html
index 078daa126..8e1d346fd 100644
--- a/2.0.x/single/spring-cloud-sleuth.html
+++ b/2.0.x/single/spring-cloud-sleuth.html
@@ -138,7 +138,8 @@ Span span = tracer.getCurrentSpan();
 String baggageKey = "key";
 String baggageValue = "foo";
 span.setBaggageItem(baggageKey, baggageValue);
-tracer.addTag(baggageKey, baggageValue);

1.3 Adding to the project

1.3.1 Only Sleuth (log correlation)

If you want to profit only from Spring Cloud Sleuth without the Zipkin integration just add +tracer.addTag(baggageKey, baggageValue);

1.3 Adding to the project

[Important]Important

To ensure that your application name is properly displayed in Zipkin + set the spring.application.name property in bootstrap.yml.

1.3.1 Only Sleuth (log correlation)

If you want to profit only from Spring Cloud Sleuth without the Zipkin integration just add the spring-cloud-starter-sleuth module to your project.

Maven. 

<dependencyManagement> 1
          <dependencies>
diff --git a/2.0.x/spring-cloud-sleuth.xml b/2.0.x/spring-cloud-sleuth.xml
index 317cad5fb..a7a8f861e 100644
--- a/2.0.x/spring-cloud-sleuth.xml
+++ b/2.0.x/spring-cloud-sleuth.xml
@@ -4,7 +4,7 @@
 
 
 Spring Cloud Sleuth
-2017-10-12
+2017-10-16
 
 
 Adrian Cole, Spencer Gibb, Marcin Grzejszczak, Dave Syer
@@ -370,6 +370,10 @@ tracer.addTag(baggageKey, baggageValue);
 
 
Adding to the project + +To ensure that your application name is properly displayed in Zipkin + set the spring.application.name property in bootstrap.yml. +
Only Sleuth (log correlation) If you want to profit only from Spring Cloud Sleuth without the Zipkin integration just add