feat: add signoz integration for otel export (#3772)
This commit is contained in:
51
otel/otel-collector-config-signoz.yaml
Normal file
51
otel/otel-collector-config-signoz.yaml
Normal 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]
|
||||
Reference in New Issue
Block a user