Bumping versions

This commit is contained in:
buildmaster
2020-09-23 05:31:16 +00:00
parent 4ec412c6ae
commit 5d4a303d61
2 changed files with 2 additions and 2 deletions

View File

@@ -55,6 +55,7 @@
|spring.sleuth.web.filter-order | | Order in which the tracing filters should be registered. Defaults to {@link TraceHttpAutoConfiguration#TRACING_FILTER_ORDER}.
|spring.sleuth.web.ignore-auto-configured-skip-patterns | false | If set to true, auto-configured skip patterns will be ignored. @see SkipPatternConfiguration
|spring.sleuth.web.skip-pattern | /api-docs.*\|/swagger.*\|.*\.png\|.*\.css\|.*\.js\|.*\.html\|/favicon.ico\|/hystrix.stream | Pattern for URLs that should be skipped in tracing.
|spring.sleuth.web.webclient.enabled | true | Enable tracing instrumentation for WebClient.
|spring.zipkin.activemq.message-max-bytes | 100000 | Maximum number of bytes for a given message with spans sent to Zipkin over ActiveMQ.
|spring.zipkin.activemq.queue | zipkin | Name of the ActiveMQ queue where spans should be sent to Zipkin.
|spring.zipkin.base-url | http://localhost:9411/ | URL of the zipkin query server instance. You can also provide the service id of the Zipkin server if Zipkin's registered in service discovery (e.g. https://zipkinserver/).

View File

@@ -128,8 +128,7 @@ class TraceWebClientAutoConfiguration {
@Configuration(proxyBeanMethods = false)
@ConditionalOnClass(WebClient.class)
@ConditionalOnProperty(value = "spring.sleuth.web.webclient.enabled",
matchIfMissing = true)
@ConditionalOnProperty(value = "spring.sleuth.web.webclient.enabled", matchIfMissing = true)
static class WebClientConfig {
@Bean