39 lines
657 B
YAML
39 lines
657 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
http:
|
|
jaeger:
|
|
protocols:
|
|
thrift_http:
|
|
endpoint: otel-collector:14278
|
|
|
|
|
|
exporters:
|
|
prometheus:
|
|
endpoint: otel-collector:9091
|
|
zipkin:
|
|
endpoint: "http://zipkin:9411/api/v2/spans"
|
|
format: proto
|
|
otlp:
|
|
endpoint: jaeger:4317
|
|
tls:
|
|
insecure: true
|
|
|
|
processors:
|
|
batch:
|
|
|
|
extensions:
|
|
health_check:
|
|
|
|
service:
|
|
extensions: [ health_check ]
|
|
pipelines:
|
|
traces:
|
|
receivers: [ otlp, jaeger ]
|
|
processors: [ batch ]
|
|
exporters: [ otlp, zipkin ]
|
|
metrics:
|
|
receivers: [ otlp ]
|
|
processors: [ batch ]
|
|
exporters: [ prometheus ]
|