Skip to content

Commit

Permalink
Remove queued_retry processor from Kubernetes example (#2296)
Browse files Browse the repository at this point in the history
This processor is deprecated
  • Loading branch information
mx-psi authored Dec 16, 2020
1 parent 59b5827 commit 575600b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions examples/k8s/otel-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ data:
otlp:
endpoint: "otel-collector.default:55680" # TODO: Update me
insecure: true
sending_queue:
num_consumers: 4
queue_size: 100
retry_on_failure:
enabled: true
processors:
batch:
memory_limiter:
Expand All @@ -27,10 +32,6 @@ data:
# 25% of limit up to 2G
spike_limit_mib: 100
check_interval: 5s
queued_retry:
num_workers: 4
queue_size: 100
retry_on_failure: true
extensions:
health_check: {}
zpages: {}
Expand All @@ -39,7 +40,7 @@ data:
pipelines:
traces:
receivers: [otlp]
processors: [memory_limiter, batch, queued_retry]
processors: [memory_limiter, batch]
exporters: [otlp]
---
apiVersion: apps/v1
Expand Down Expand Up @@ -127,7 +128,6 @@ data:
# 25% of limit up to 2G
spike_limit_mib: 512
check_interval: 5s
queued_retry:
extensions:
health_check: {}
zpages: {}
Expand All @@ -142,11 +142,11 @@ data:
pipelines:
traces/1:
receivers: [otlp, zipkin]
processors: [memory_limiter, batch, queued_retry]
processors: [memory_limiter, batch]
exporters: [zipkin]
traces/2:
receivers: [otlp, jaeger]
processors: [memory_limiter, batch, queued_retry]
processors: [memory_limiter, batch]
exporters: [jaeger]
---
apiVersion: v1
Expand Down

0 comments on commit 575600b

Please sign in to comment.