mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 08:07:15 +00:00
30 lines
493 B
YAML
30 lines
493 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
endpoint: 0.0.0.0:4317
|
|
|
|
processors:
|
|
batch:
|
|
timeout: 5s
|
|
|
|
exporters:
|
|
otlphttp/loki:
|
|
endpoint: http://loki:3100/otlp
|
|
tls:
|
|
insecure: true
|
|
otlp/tempo:
|
|
endpoint: http://tempo:4317
|
|
tls:
|
|
insecure: true
|
|
|
|
service:
|
|
pipelines:
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlp/tempo]
|
|
logs:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/loki] |