Last active
February 7, 2022 11:44
-
-
Save JulienBreux/980db0b6af24091e827028a9415d723e to your computer and use it in GitHub Desktop.
Istio tracing Jaeger for ASM example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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