Skip to content

Commit 92ef205

Browse files
committed
removed references to collector batch processor
1 parent c876789 commit 92ef205

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

examples/instrumentation/Wordpress/otel-collector-config.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ receivers:
44
http:
55
endpoint: 0.0.0.0:4318
66

7-
processors:
8-
batch:
9-
107
memory_limiter:
118
check_interval: 1s
129
limit_percentage: 65
@@ -19,17 +16,19 @@ exporters:
1916
verbosity: detailed
2017
otlp:
2118
endpoint: jaeger:4317
19+
sending_queue:
20+
batch:
2221
tls:
2322
insecure: true
2423

2524
service:
2625
pipelines:
2726
metrics:
2827
receivers: [otlp]
29-
processors: [memory_limiter, batch]
28+
processors: [memory_limiter]
3029
exporters: [debug]
3130

3231
traces:
3332
receivers: [otlp]
34-
processors: [memory_limiter, batch]
33+
processors: [memory_limiter]
3534
exporters: [debug, otlp]

files/collector/otel-collector-config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ receivers:
1010
exporters:
1111
zipkin:
1212
endpoint: "http://zipkin:9411/api/v2/spans"
13+
sending_queue:
14+
batch:
1315
debug:
1416
verbosity: detailed
1517

16-
processors:
17-
batch:
18-
1918
extensions:
2019
health_check:
2120
pprof:
@@ -30,11 +29,9 @@ service:
3029
traces:
3130
receivers: [otlp, zipkin]
3231
exporters: [debug]
33-
processors: [batch]
3432
metrics:
3533
receivers: [otlp]
3634
exporters: [debug]
3735
logs:
3836
receivers: [ otlp ]
39-
processors: [ batch ]
4037
exporters: [ debug ]

src/Aws/examples/collector/config.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ receivers:
44
grpc:
55
endpoint: 0.0.0.0:4317
66

7-
processors:
8-
batch:
9-
107
exporters:
118
logging:
129
loglevel: debug
1310
awsxray:
1411
region: 'us-west-2'
12+
sending_queue:
13+
batch:
14+
1515
awsemf:
1616
region: 'us-west-2'
17+
sending_queue:
18+
batch:
1719

1820
service:
1921
pipelines:

0 commit comments

Comments
 (0)