44 lines
794 B
YAML
44 lines
794 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
http:
|
|
endpoint: 0.0.0.0:4318
|
|
|
|
extensions:
|
|
health_check:
|
|
endpoint: 127.0.0.1:13133
|
|
path: "/ready"
|
|
|
|
processors:
|
|
batch:
|
|
|
|
exporters:
|
|
otlphttp/metrics:
|
|
endpoint: http://127.0.0.1:9009/otlp
|
|
tls:
|
|
insecure: true
|
|
otlphttp/traces:
|
|
endpoint: http://127.0.0.1:4418
|
|
tls:
|
|
insecure: true
|
|
otlphttp/logs:
|
|
endpoint: http://127.0.0.1:3100/otlp
|
|
tls:
|
|
insecure: true
|
|
|
|
service:
|
|
extensions: [health_check]
|
|
pipelines:
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/traces]
|
|
metrics:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/metrics]
|
|
logs:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [otlphttp/logs]
|