You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation says to use spring.zipkin.discoveryClientEnabled to report spans to Zipkin discovered (likely in Eureka). Technically, ZipkinUrlExtractor will do the work, to subsitute the application name encoded as the hostname in spring.zipkin.baseUrl for a usable instance.
However, if ConditionalOnWebApplication.Type.REACTIVE triggers, then none of this happens and reporting to zipkin fails, as the fake hostname wasn't substituted.
Sample
Make an app like this and it triggers reactive reporting.. Since the async reporter buffers actual work from the production requests, onto a separate thread, there really should be no reason to restrict Eureka depending on which frontend is in use.
Describe the bug
Documentation says to use
spring.zipkin.discoveryClientEnabled
to report spans to Zipkin discovered (likely in Eureka). Technically,ZipkinUrlExtractor
will do the work, to subsitute the application name encoded as the hostname inspring.zipkin.baseUrl
for a usable instance.However, if
ConditionalOnWebApplication.Type.REACTIVE
triggers, then none of this happens and reporting to zipkin fails, as the fake hostname wasn't substituted.Sample
Make an app like this and it triggers reactive reporting.. Since the async reporter buffers actual work from the production requests, onto a separate thread, there really should be no reason to restrict Eureka depending on which frontend is in use.
The text was updated successfully, but these errors were encountered: