diff --git a/1.0.x/images/dependencies.png b/1.0.x/images/dependencies.png index 324a10062..d0eceb6fb 100644 Binary files a/1.0.x/images/dependencies.png and b/1.0.x/images/dependencies.png differ diff --git a/1.0.x/images/zipkin-trace-screenshot.png b/1.0.x/images/zipkin-trace-screenshot.png index 61b7ff769..f0452f0f4 100644 Binary files a/1.0.x/images/zipkin-trace-screenshot.png and b/1.0.x/images/zipkin-trace-screenshot.png differ diff --git a/1.0.x/images/zipkin-traces.png b/1.0.x/images/zipkin-traces.png index 4875ca69b..673ece9aa 100644 Binary files a/1.0.x/images/zipkin-traces.png and b/1.0.x/images/zipkin-traces.png differ diff --git a/1.0.x/images/zipkin-ui.png b/1.0.x/images/zipkin-ui.png index ea99bc100..34b0215b7 100644 Binary files a/1.0.x/images/zipkin-ui.png and b/1.0.x/images/zipkin-ui.png differ diff --git a/1.0.x/index.html b/1.0.x/index.html index 240b2db07..72615172d 100644 --- a/1.0.x/index.html +++ b/1.0.x/index.html @@ -430,7 +430,6 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
1.1.0.BUILD-SNAPSHOT
+1.0.5.BUILD-SNAPSHOT
Spring Cloud Sleuth implements a distributed tracing solution for Spring Cloud.
@@ -1168,22 +1167,6 @@ public class ZipkinStreamServerApplication {Marcin Grzejszczak talking about Spring Cloud Sleuth and Zipkin
-In order to customize the polling mechanism you can create a bean of PollerMetadata type
-with name equal to StreamSpanReporter.POLLER. Here you can find an example of such a configuration.
@Configuration
-public static class CustomPollerConfiguration {
-
- @Bean(name = StreamSpanReporter.POLLER)
- PollerMetadata customPoller() {
- PollerMetadata poller = new PollerMetadata();
- poller.setMaxMessagesPerPoll(500);
- poller.setTrigger(new PeriodicTrigger(5000L));
- return poller;
- }
-}
-ThreadPoolTaskScheduler in a TraceAsyncListenableTaskExe
-@EnableAutoConfiguration
-@Configuration
-public static class TestConfiguration {
-
- @Bean
- ClientHttpRequestFactory mySyncClientFactory() {
- return new MySyncClientHttpRequestFactory();
- }
-
- @Bean
- AsyncClientHttpRequestFactory myAsyncClientFactory() {
- return new MyAsyncClientHttpRequestFactory();
- }
-}
+Unresolved directive in spring-cloud-sleuth.adoc - include::../../../../spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/web/client/TraceWebAsyncClientAutoConfigurationTest.java[tags=async_template_factories,indent=0]
@@ -2261,23 +2212,10 @@ backwards compatibility in 1.0.4 we’ve started sending both valid and inva
in Spring Cloud Sleuth 1.1 we will remove the support for the deprecated headers.
-You can provide the spring.sleuth.integration.patterns pattern to explicitly
+
Since 1.0.4 you can provide the spring.sleuth.integration.patterns pattern to explicitly
provide the names of channels that you want to include for tracing. By default all channels
are included.
-
-
-
-
-Important
-
-
-When using the Executor to build a Spring Integration IntegrationFlow remember to use the untraced version of the Executor.
-Decorating Spring Integration Executor Channel with TraceableExecutorService will cause the spans to be improperly closed.
-
-
-
-
Zuul
@@ -2309,7 +2247,7 @@ To disable Zuul support set the spring.sleuth.zuul.enabled property