Adrian Cole
Adrian Cole
I'm assuming we are doing rabbit driver 5.x cc @shakuzen
ps feign isn't the easiest thing to manage right now as interceptor only affects inbound. Ex you have to play games to catch the other side (by using an invocation...
we can probably do this, but it is a little tricky, especially when layering with things like hystrix in the mean time, you can look at sleuth which already supports...
In thinking this through, I think that Feign would be best as a "local span". For example, feign's span would correlate to the method being invoked. Considering that the feign.Client...
The tricky part with feign is not doing double-dip tracing. For example, if OkHttp is below, it should really own the client span, similarly ApacheHC. A "cheap" way out would...
The other tricky part is the entrypoint. a wrapped Feign builder is neat, though this interferes with the Hystrix one! You could make hystrix an optional dep and do 2...
probably good time to try this as Brave 4.3 is out
we could do something like this, though I wouldn't integrate spring cloud loadbalancer, etc, as that's where it gets gnarly. This means this code might not be literally used by...
Here's a pending spike ```java /** * The "host" or "host:port" sent by the client. By default, this returns the host {@link #header(String)}, but it * could also be the...
I think this needs to be done before Brave 6, so that we can make a syntax for the Http rule sampler