20 lines
580 B
YAML
20 lines
580 B
YAML
|
|
# Linkerd control-plane overrides — enable proxy tracing to Tempo.
|
||
|
|
#
|
||
|
|
# Every meshed pod's Linkerd sidecar will export OTLP traces to the
|
||
|
|
# Alloy collector in the monitoring namespace, which forwards to Tempo.
|
||
|
|
|
||
|
|
# Controller-level tracing (identity, destination controllers)
|
||
|
|
controller:
|
||
|
|
tracing:
|
||
|
|
enabled: true
|
||
|
|
collector:
|
||
|
|
endpoint: "alloy.monitoring.svc.cluster.local:4317"
|
||
|
|
|
||
|
|
# Proxy-level tracing (every meshed sidecar)
|
||
|
|
proxy:
|
||
|
|
tracing:
|
||
|
|
enabled: true
|
||
|
|
traceServiceName: linkerd-proxy
|
||
|
|
collector:
|
||
|
|
endpoint: "alloy.monitoring.svc.cluster.local:4317"
|