diff --git a/multi/multi__integrations.html b/multi/multi__integrations.html index be138627e..36d355df4 100644 --- a/multi/multi__integrations.html +++ b/multi/multi__integrations.html @@ -146,6 +146,8 @@ property where you can provide a list of bean names.
@Configuration
@EnableAutoConfiguration
@EnableAsync
+// add the infrastructure role to ensure that the bean gets auto-proxied
+@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
static class CustomExecutorConfig extends AsyncConfigurerSupport {
@Autowired
@@ -164,7 +166,9 @@ The following example shows how to set up such a custom Ex
return new LazyTraceExecutor(this.beanFactory, executor);
}
-}Features from this section can be disabled by setting the spring.sleuth.messaging.enabled property with value equal to false.
Spring Cloud Sleuth integrates with Spring Integration. +}
![]() | Tip |
|---|---|
To ensure that your configuration gets post processed, remember
+to add the |
Features from this section can be disabled by setting the spring.sleuth.messaging.enabled property with value equal to false.
Spring Cloud Sleuth integrates with Spring Integration.
It creates spans for publish and subscribe events.
To disable Spring Integration instrumentation, set spring.sleuth.integration.enabled to false.
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 but hystrixStreamOutput channel are included.
![]() | Important | |||||
|---|---|---|---|---|---|---|
When using the @Configuration
@EnableAutoConfiguration
@EnableAsync
+// add the infrastructure role to ensure that the bean gets auto-proxied
+@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
static class CustomExecutorConfig extends AsyncConfigurerSupport {
@Autowired
@@ -950,7 +952,9 @@ The following example shows how to set up such a custom Features from this section can be disabled by setting the Spring Cloud Sleuth integrates with Spring Integration. +}
Features from this section can be disabled by setting the Spring Cloud Sleuth integrates with Spring Integration.
It creates spans for publish and subscribe events.
To disable Spring Integration instrumentation, set You can provide the
|