diff --git a/reference/html/index.html b/reference/html/index.html index c03edd30b..a5ce34a50 100644 --- a/reference/html/index.html +++ b/reference/html/index.html @@ -172,18 +172,19 @@ $(addBlockSwitches);
If you have Spring Cloud CircuitBreaker on the classpath, we will wrap the passed command Supplier and the fallback Function in its trace representations. In order to disable this instrumentation set spring.sleuth.circuitbreaker.enabled to false.
We register a custom HystrixConcurrencyStrategy called TraceCallable that wraps all Callable instances in their Sleuth representative.
The strategy either starts or continues a span, depending on whether tracing was already going on before the Hystrix command was called.
@@ -2944,7 +2951,7 @@ To disable the custom Hystrix Concurrency Strategy, set the spring.sleuth.
Assume that you have the following HystrixCommand:
spring.sleuth.
We registering a custom RxJavaSchedulersHook that wraps all Action0 instances in their Sleuth representative, which is called TraceAction.
The hook either starts or continues a span, depending on whether tracing was already going on before the Action was scheduled.
@@ -3000,12 +3007,12 @@ the Reactor support.
Features from this section can be disabled by setting the spring.sleuth.web.enabled property with value equal to false.
Through the TracingFilter, all sampled incoming requests result in creation of a Span.
That Span’s name is http: + the path to which the request was sent.
@@ -3029,7 +3036,7 @@ to true.
Since we want the span names to be precise, we use a TraceHandlerInterceptor that either wraps an existing HandlerInterceptor or is added directly to the list of existing HandlerInterceptors.
The TraceHandlerInterceptor adds a special request attribute to the given HttpServletRequest.
@@ -3039,13 +3046,13 @@ In that case, please file an issue in Spring Cloud Sleuth.
If your controller returns a Callable or a WebAsyncTask, Spring Cloud Sleuth continues the existing span instead of creating a new one.
Through TraceWebFilter, all sampled incoming requests result in creation of a Span.
That Span’s name is http: + the path to which the request was sent.
@@ -3060,7 +3067,7 @@ If you want to reuse Sleuth’s default skip patterns and append your own, p
Via the integration with Brave, Spring Cloud Sleuth supports Dubbo.
It’s enough to add the brave-instrumentation-dubbo dependency:
We inject a RestTemplate interceptor to ensure that all the tracing information is passed to the requests.
Each time a call is made, a new Span is created.
@@ -3113,7 +3120,7 @@ If you create a RestTemplate instance with a new keywo