47 lines
785 B
YAML
47 lines
785 B
YAML
extensions:
|
|
health_check:
|
|
# pprof:
|
|
zpages:
|
|
|
|
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
endpoint: 0.0.0.0:4317
|
|
http:
|
|
endpoint: 0.0.0.0:4318
|
|
|
|
processors:
|
|
batch:
|
|
|
|
exporters:
|
|
otlp/tempo:
|
|
endpoint: tempo:4317
|
|
tls:
|
|
insecure: true
|
|
prometheusremotewrite:
|
|
endpoint: http://prometheus:9090/api/prom/push
|
|
otlphttp/loki:
|
|
endpoint: http://loki:3100/otlp
|
|
|
|
service:
|
|
extensions:
|
|
- health_check
|
|
- zpages
|
|
|
|
pipelines:
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters:
|
|
- otlp/tempo
|
|
metrics:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters:
|
|
- prometheusremotewrite
|
|
logs:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters:
|
|
- otlphttp/loki
|