Merge branch '1.3.x' into 2.0.x

This commit is contained in:
Marcin Grzejszczak
2018-08-22 11:28:35 +02:00
5 changed files with 60 additions and 8 deletions

View File

@@ -1031,6 +1031,12 @@ You can configure which URIs you would like to skip by setting the `spring.sleut
If you have `ManagementServerProperties` on classpath, its value of `contextPath` gets appended to the provided skip pattern.
If you want to reuse the Sleuth's default skip patterns and just append your own, pass those patterns by using the `spring.sleuth.web.additionalSkipPattern`.
To change the order of tracing filter registration, please set the
`spring.sleuth.web.filter-order` property.
To disable the filter that logs uncaught exceptions you can disable the
`spring.sleuth.web.exception-throwing-filter-enabled` property.
==== HandlerInterceptor
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`.
@@ -1052,6 +1058,9 @@ You can configure which URIs you would like to skip by using the `spring.sleuth.
If you have `ManagementServerProperties` on the classpath, its value of `contextPath` gets appended to the provided skip pattern.
If you want to reuse Sleuth's default skip patterns and append your own, pass those patterns by using the `spring.sleuth.web.additionalSkipPattern`.
To change the order of tracing filter registration, please set the
`spring.sleuth.web.filter-order` property.
==== Dubbo RPC support
Via the integration with Brave, Spring Cloud Sleuth supports http://dubbo.io/[Dubbo].