I'm migrating a project form Spring Boot 2.7 to 3.1 and one of the steps is migrating sleuth to micrometer.tracing. In sleuth there was this property: sleuth.baggage.local-fields
used to denote local fields in baggage, but I don't see an equivalent in micrometer.tracing. I found the following properties:
management.tracing.baggage.remote-fields
management.tracing.baggage.correlation.fields
and I don't see an equivalent for .local-properties
, i looked into TracingProperties and it looks like there is nothing like that.
How can I achieve this functionality in micrometer.tracing?