feat: add signoz integration for otel export (#3772)

This commit is contained in:
cthomas
2025-08-06 12:06:23 -07:00
committed by GitHub
parent 1957799383
commit 3884d53f81
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
processors:
memory_limiter:
check_interval: 1s
limit_mib: 500
spike_limit_mib: 128
batch:
timeout: 10s
send_batch_size: 8192
max_queue_size: 4096
max_batch_size: 1024
throttle: true
exporters:
otlp:
endpoint: ${SIGNOZ_ENDPOINT}
headers:
"signoz-ingestion-key": "${SIGNOZ_INGESTION_KEY}"
extensions:
health_check:
pprof:
zpages:
service:
telemetry:
logs:
level: error
metrics:
address: 0.0.0.0:8888
extensions: [health_check, pprof, zpages]
pipelines:
traces:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlp]
logs:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlp]
metrics:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlp]