I'm including Spring Cloud Sleuth + Zipkin 2.2.7 in my Spring Boot application, and am using injected RestTemplates so that calls to them are instrumented and sent to zipkin.
My zipkin spans arising from RestTemplate calls contain tags for http.method
and http.path
, but no other HTTP info.
Is there any way to surface query parameters in tags? Sometimes there is interesting information in them that would be really useful to surface in a tag (e.g. GET /foo?includeSuperSensitiveData=true
).
Let me try to explain what is going on under the hood:
TraceRestTemplateBeanPostProcessor
modifies all theRestTemplate
beans. As you can see there, it injects aLazyTracingClientHttpRequestInterceptor
that is using abrave.spring.web.TracingClientHttpRequestInterceptor
to instrument the http calls. So this is done by Brave, not Sleuth.You might be able to extend
TracingClientHttpRequestInterceptor
, add the details you need to your implementation and create a bean (you might need to disable the config class that creates it if there is no@ConditionalOnMissingBean
).