54 lines
1017 B
YAML
54 lines
1017 B
YAML
|
|
receivers:
|
||
|
|
otlp:
|
||
|
|
protocols:
|
||
|
|
grpc:
|
||
|
|
endpoint: 0.0.0.0:4317
|
||
|
|
http:
|
||
|
|
endpoint: 0.0.0.0:4318
|
||
|
|
|
||
|
|
processors:
|
||
|
|
batch:
|
||
|
|
timeout: 5s
|
||
|
|
send_batch_size: 1024
|
||
|
|
memory_limiter:
|
||
|
|
check_interval: 1s
|
||
|
|
limit_mib: 512
|
||
|
|
spike_limit_mib: 128
|
||
|
|
resource:
|
||
|
|
attributes:
|
||
|
|
- key: deployment.environment
|
||
|
|
value: development
|
||
|
|
action: upsert
|
||
|
|
|
||
|
|
exporters:
|
||
|
|
otlp/tempo:
|
||
|
|
endpoint: tempo:4317
|
||
|
|
tls:
|
||
|
|
insecure: true
|
||
|
|
prometheus:
|
||
|
|
endpoint: 0.0.0.0:8889
|
||
|
|
loki:
|
||
|
|
endpoint: http://loki:3100/loki/api/v1/push
|
||
|
|
tls:
|
||
|
|
insecure: true
|
||
|
|
|
||
|
|
extensions:
|
||
|
|
health_check:
|
||
|
|
endpoint: 0.0.0.0:13133
|
||
|
|
|
||
|
|
service:
|
||
|
|
extensions: [health_check]
|
||
|
|
pipelines:
|
||
|
|
traces:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [memory_limiter, batch]
|
||
|
|
exporters: [otlp/tempo]
|
||
|
|
metrics:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [memory_limiter, batch]
|
||
|
|
exporters: [prometheus]
|
||
|
|
logs:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [memory_limiter, batch]
|
||
|
|
exporters: [loki]
|