My company has got custom distributed tracing solution. I've got Java client/proxy library ready for it, its able to send traces/spans to server.
However I would like to integrate it with Spring Boot Sleuth / Brave, so to implement some kind of bridge from Brave, so brave would use my client/proxy libraries to send traces/spans.
How to customize only sender part in Brave ?
Another approach is to implement from scratch all Sleuth api interfaces (Tracer, Span, TraceContext, ... etc) which is a huge task.
I would like to use Brave implementation, only to inject some kind of bridge/adapter which will use my custom client/proxy.