36 lines
555 B
YAML
36 lines
555 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
http:
|
|
|
|
processors:
|
|
batch:
|
|
|
|
exporters:
|
|
prometheus:
|
|
endpoint: 0.0.0.0:8888
|
|
|
|
otlphttp/loki:
|
|
endpoint: http://loki:3100/otlp
|
|
|
|
otlphttp/tempo:
|
|
endpoint: http://tempo:4318/v1/traces
|
|
|
|
service:
|
|
pipelines:
|
|
metrics:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [prometheus]
|
|
|
|
logs:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/loki]
|
|
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/tempo]
|