Closed ZRaboB closed 10 months ago
Have you configured the propagation mechanism to be B3 multi?
HI marcingrzejszczak, Thanks for your reply, I just added that and now it seems to that the trace id is being sent but on a different format like 659e9010c6c4cc29d1b5b0fc5b4a1bbd and my older format 0000000000000006 don't seem valid anymore, Do you know wether my old format 0000000000000006 will work or not?
And i also noticed that it works only when using FeignClient requests but not for WebServiceTemplate requests (Soap xml requests)
That's because the format is 128 bit. You can modify it by creating your own Tracing
bean. You can check the config in Boot.
Hi All, We are facing an issue after migrating from Spring boot 2.7 to 3.1.7 and replacing sleuth with micrometer,
The issue is we send a header traceid with name "x-b3-trace-id" or "traceid" the header is visible within Incoming request all the way wihtin our app but whenever our app make an outgoing request using Feign or any other HTTP client those headers are gone and only the X-Auth-user is preserved. The same used to work with Sboot 2.7 while using sleuth & brave. (And Wiremock for Integration test)
Kindly let us know if there are known solutions already?
Code samples: Integration test :
WIREMOCK Config
Parts of our POM FILE (We may be have too many dependencies ?)