diff --git a/spring-cloud-sleuth.html b/spring-cloud-sleuth.html index 6dbc7ea4a..b112e297e 100644 --- a/spring-cloud-sleuth.html +++ b/spring-cloud-sleuth.html @@ -1460,14 +1460,14 @@ however will be still there.
In Spring Cloud Sleuth we’re instrumenting async related components so that the tracing information is passed between threads. You can disable this behaviour
by setting the value of spring.sleuth.async.enabled to false.
If you annotate your method with @Async / @Scheduled then we’ll automatically create a new Span with the following characteristics:
If you annotate your method with @Async then we’ll automatically create a new Span with the following characteristics:
spring.sleuth.async.enabled to false<
In Spring Cloud Sleuth we’re instrumenting scheduled method execution so that the tracing information is passed between threads. You can disable this behaviour
+by setting the value of spring.sleuth.scheduled.enabled to false.
If you annotate your method with @Scheduled then we’ll automatically create a new Span with the following characteristics:
the Span name will be the annotated method name
+the Span will be tagged with that method’s class name and the method name too
+If you want to skip Span creation for some @Scheduled annotated classes you can set the
+spring.sleuth.scheduled.skipPattern with a regular expression that will match the fully qualified name of the
+@Scheduled annotated class.
We’re providing LazyTraceExecutor, TraceableExecutorService and TraceableScheduledExecutorService. Those implementations
@@ -1507,7 +1532,7 @@ To disable Zuul support set the spring.sleuth.zuul.enabled property