I have several Spring Boot applications, one of which is using Spring Boot 3 and the others are using Spring Boot 2. I need to implement request tracing between them and between them and Kafka. However, I haven't found anything on how to integrate tracing via Spring Cloud Sleuth on one application and Micrometer-tracing on another application. Is there any way to retrieve the trace ID generated by Sleuth in an application that uses Micrometer Tracing and backwards?
I tried to connect sleuth and micrometer-tracing in apps and send http requests to spring boot 2 app which sent a message to kafka which read the spring boot 3 app but traceId only showed up in spring boot 2 app