Ambassador tracing integration with Istio's Jaeger Ambassador tracing integration with Istio's Jaeger kubernetes kubernetes

Ambassador tracing integration with Istio's Jaeger


The answer here is to install istio with --set values.global.tracer.zipkin.address as provided in istio documentation

istioctl manifest apply --set values.global.tracer.zipkin.address=<jaeger-collector-service>.<jaeger-collector-namespace>:9411

And


Use the original TracingService setting: service: "zipkin.istio-system:9411" as Donato Szilagyi confirmed in comments.

apiVersion: getambassador.io/v2kind: TracingServicemetadata:  name: tracing  namespace: {{ .Values.namespace }}spec:  service: "zipkin.istio-system:9411"  driver: zipkin  ambassador_id: ambassador-{{ .Values.namespace }}  config: {}

Great! It works. And this time I used the original TracingService setting: service: "zipkin.istio-system:9411" – Donato Szilagy