Skip to content

Commit

Permalink
HOTFIX - Config open telemetry (#4008)
Browse files Browse the repository at this point in the history
  • Loading branch information
Riron authored Mar 4, 2025
1 parent 9df692b commit 15bc55b
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions otel/collector-config.sec-fr1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,21 @@ receivers:
password: ${env:SANDBOX_DB_PWD}

processors:
batch/datadog:
memory_limiter:
check_interval: 1s
limit_percentage: 80
spike_limit_percentage: 15

batch/datadog_metrics:
send_batch_max_size: 100
send_batch_size: 10
timeout: 10s

batch/datadog_generic:
send_batch_max_size: ${env:OTEL_DD_BATCH_MAX_SIZE:-1000}
send_batch_size: ${env:OTEL_DD_BATCH_SIZE:-100}
timeout: 10s

connectors:
datadog/connector:

Expand All @@ -28,13 +38,13 @@ service:
pipelines:
traces:
receivers: [otlp]
processors: [batch, memory_limiter]
processors: [memory_limiter, batch/datadog_generic]
exporters: [datadog/connector, datadog/exporter]
metrics:
receivers: [datadog/connector, otlp, postgresql/prod, postgresql/sandbox]
processors: [batch/datadog, memory_limiter]
processors: [memory_limiter, batch/datadog_metrics]
exporters: [datadog/exporter]
logs:
receivers: [otlp]
processors: [batch, memory_limiter]
processors: [memory_limiter, batch/datadog_generic]
exporters: [datadog/exporter]

0 comments on commit 15bc55b

Please sign in to comment.