java-spring-web
java-spring-web copied to clipboard
OpenTracing Spring Web instrumentation
After update to Spring Boot 2.6 an application relying on `opentracing-spring-web-starter` fails to start: ``` 2021-11-30T11:56:22.972+0000 ERROR o.s.b.d.LoggingFailureAnalysisReporter *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to...
This PR fixes issue #147. The minimum version of compatible spring-boot version has been upgraded to 2.4.0 which contains the new basePath attribute used in 2.6.0.
I want to execute another interceptor to add tags after this interceptor creates a span, but this interceptor does not support sorting.
I am using **Webflux** and **Netty** in my spring boot app. RequestEntity is the request parameter in my controller class. I am getting 500 'internal server error' for RequestEntity as...
1.Support Spring RequestMapping 2.HandlerUtils.requestMapping,if use ```.path()```can not get anything when use ```@Requestmapping``` so change to value()
In webflux, the [http method is used as operation name](https://github.com/opentracing-contrib/java-spring-web/blob/e394c57455bd60ea05a325a1417152c0b8386f56/opentracing-spring-web/src/main/java/io/opentracing/contrib/spring/web/webfilter/TracingOperator.java#L68). Preferably, this should be the controller method name, as is already the case in non-webflux spring.
Hi, I've noticed that the skip url pattern configured by property opentracing.spring.web.skipPattern does not apply to RestTemplate requests. My application uses RestTemplate to perform regular health check requests to other...
Hey team! We've recently stumbled on a bit of a contrived bug in this library when using it with Webflux. We are subscribing to a Flux. This Flux makes requests...
Hello! With this PR, `WebFluxSpanDecorator` will be extended with an `onCreate()` callback called right after the span creation. Cf this issue: #140 Thanks, @geoand.
Hello! I need to customize a span right after its creation and before its activation (injecting some baggage items). I am encountering this need for both regular Servlet based applications...