31 lines
515 B
YAML
31 lines
515 B
YAML
|
|
receivers:
|
||
|
|
otlp:
|
||
|
|
protocols:
|
||
|
|
http:
|
||
|
|
endpoint: 0.0.0.0:4318
|
||
|
|
|
||
|
|
processors:
|
||
|
|
batch:
|
||
|
|
timeout: 5s
|
||
|
|
send_batch_size: 512
|
||
|
|
|
||
|
|
exporters:
|
||
|
|
otlphttp:
|
||
|
|
endpoint: ${env:SIGNOZ_ENDPOINT}
|
||
|
|
compression: gzip
|
||
|
|
|
||
|
|
service:
|
||
|
|
pipelines:
|
||
|
|
traces:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [batch]
|
||
|
|
exporters: [otlphttp]
|
||
|
|
metrics:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [batch]
|
||
|
|
exporters: [otlphttp]
|
||
|
|
logs:
|
||
|
|
receivers: [otlp]
|
||
|
|
processors: [batch]
|
||
|
|
exporters: [otlphttp]
|