I was wondering how to add RequestTracing to my cl...
# http4k
r
I was wondering how to add RequestTracing to my client (for outgoing calls). Or any other headers. I just want my client to automatically attach some headers to all calls outgoing through it such as tracing, content type, etc. Or can those only be added on the request level I wonder
d
ClientFilters.RequestTracing
Just wrap your http client in it using then()
👍 1
r
Thanks david 🙂