diff --git a/1.3.x/multi/multi__features.html b/1.3.x/multi/multi__features.html index bb705d5d4..45da37ea4 100644 --- a/1.3.x/multi/multi__features.html +++ b/1.3.x/multi/multi__features.html @@ -10,7 +10,7 @@ latency in your applications. Sleuth is written to not log too much, and to not rest template, scheduled actions, message channels, zuul filters, feign client).
SpanInjector and SpanExtractor implementations.If spring-cloud-sleuth-zipkin then the app will generate and collect Zipkin-compatible traces.
+a baggage element then it will be sent downstream either via HTTP or messaging to other processes.
If spring-cloud-sleuth-zipkin is on the classpath then the app will generate and collect Zipkin-compatible traces.
By default it sends them via HTTP to a Zipkin server on localhost (port 9411).
Configure the location of the service using spring.zipkin.baseUrl.
spring-rabbit or spring-kafka your app will send traces to a broker instead of http.spring-cloud-sleuth-stream is deprecated and should no longer be used.![]() | Important |
|---|---|
If using Zipkin, configure the percentage of spans exported using |
![]() | Note | ||
|---|---|---|---|
the SLF4J MDC is always set and logback users will immediately see the trace and span ids in logs per the example diff --git a/1.3.x/multi/multi__sending_spans_to_zipkin.html b/1.3.x/multi/multi__sending_spans_to_zipkin.html index c63c7f4f7..79fca75f1 100644 --- a/1.3.x/multi/multi__sending_spans_to_zipkin.html +++ b/1.3.x/multi/multi__sending_spans_to_zipkin.html @@ -1,7 +1,13 @@ -By default if you add
By default if you add spring.zipkin.baseUrl: http://192.168.99.100:9411/ If you want to find Zipkin via service discovery it’s enough to pass the
-Zipkin’s service id inside the URL (example for spring.zipkin.baseUrl: http://zipkinserver/zipkinserver service id)spring.zipkin.baseUrl: http://zipkinserver/If you have web, rabbit or kafka together on the classpath, you might need
+to pick the means by which you would like to send spans to zipkin. To do that
+just set either spring.zipkin.sender.type: web |