Skip to content

Instantly share code, notes, and snippets.

@JulienBreux
Last active February 7, 2022 11:44
Show Gist options
  • Save JulienBreux/980db0b6af24091e827028a9415d723e to your computer and use it in GitHub Desktop.
Save JulienBreux/980db0b6af24091e827028a9415d723e to your computer and use it in GitHub Desktop.
Istio tracing Jaeger for ASM example
---
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
meshConfig:
enableTracing: true
defaultConfig:
tracing:
sampling: 100
values:
global:
proxy:
tracer: zipkin # stackdriver
tracer:
zipkin:
address: jaeger-collector.monitoring:9411
---
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
meshConfig: # Read more https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig
enableTracing: true # Enable tracing
accessLogFile: /dev/stdout # Export access logs (only for tests)
extensionProviders: # Read more https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider
zipkin: # Read more https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-ZipkinTracingProvider
service: jaeger-allinone-collector.monitoring.svc.cluster.local
port: 9411
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment