Multi Tenant Jaeger

Hey guys,
I am trying to setup multiple Jaeger collector/query using the jaeger operator.
So basically:

  • 1 jaeger collector and query per namespaces
  • 1 big ES
    And this works fine. I am able to see my traces.

However, all my traces are under “”. And I guess it’s because the root span (in the istio-ingress-gateway envoy proxy) is not able to be send to the right jaeger collector in the right namespace.

Is there any workaround for that or it’s just not possible at the moment?

Ben

Unfortunately at the moment it is not possible - the envoy proxy can only be configured with a single zipkin address. You would require each route to be able to define its own tracer config (i.e. address).

Ok understood. Thanks!