David Melia

Results 23 comments of David Melia

Hi @bclozel @wilkinsona - in terms of my use case we have a few custom filters which need to happen to set up the observation context - this includes extracting...

@bclozel I have tried HttpHandlerDecoratorFactory and it works great :-) . This actually removes my need to override this filter order.

@edigu my use-case is to set up the log context which i used to do using web filters without realising I could simply use HttpHandlerDecoratorFactory. Below is an example. I...

@wilkinsona I am prototyping Hooks.enableAutomaticContextPropagation() and have noticed that integrations such as Spring Data Mongo do not propagate the trace ID - I assume this is because it hands off...

I had to add the following groovy dep to fix this ``` org.springframework.cloud spring-cloud-contract-maven-plugin .... org.apache.groovy groovy 4.0.19 ... ```

Thanks @RobWin - this is an interesting side effect which we have used in our stack. Waiting to here your response so we can work around it.

Hi, I have updated my prototype in the branch https://github.com/davidmelia/spring-boot-kafka-consumer-tracing/tree/potential_fix using the new reactor _Hooks.enableAutomaticContextPropagation();_ which simulates the legacy Spring Cloud Sleuth This solves the issue for the non reactive...