diff --git a/multi/multi__features.html b/multi/multi__features.html index d11ea2dbd..0c16eb35e 100644 --- a/multi/multi__features.html +++ b/multi/multi__features.html @@ -8,8 +8,7 @@ When you want to wrap some operation in a Span and have it written to the logs o Spring Cloud Sleuth is loosely based on HTrace but is compatible with Zipkin (Dapper).
  • Sleuth records timing information to aid in latency analysis. By using sleuth, you can pinpoint causes of latency in your applications.
  • Sleuth is written to not log too much and to not cause your production application to crash. To that end, Sleuth:

  • Instruments common ingress and egress points from Spring applications (servlet filter, async endpoints, rest template, scheduled actions, message channels, Zuul filters, and Feign client).
  • Sleuth includes default logic to join a trace across HTTP or messaging boundaries. -For example, HTTP propagation works over Zipkin-compatible request headers. -This propagation logic is defined and customized through SpanInjector and SpanExtractor implementations.
  • Sleuth can propagate context (also known as baggage) between processes. +For example, HTTP propagation works over Zipkin-compatible request headers.
  • Sleuth can propagate context (also known as baggage) between processes. Consequently, if you set a baggage element on a Span, it is sent downstream to other processes over either HTTP or messaging.
  • Provides a way to create or continue spans and add tags and logs through annotations.
  • If spring-cloud-sleuth-zipkin is on the classpath, the app generates and collects Zipkin-compatible traces. By default, it sends them over HTTP to a Zipkin server on localhost (port 9411). You can configure the location of the service by setting spring.zipkin.baseUrl.