Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions cmd/telemetrygen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ receivers:
grpc:
endpoint: 0.0.0.0:4317

processors:
batch:

exporters:
debug:
verbosity: detailed
Expand All @@ -57,15 +54,12 @@ service:
pipelines:
logs:
receivers: [otlp]
processors: [batch]
exporters: [debug]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [debug]
traces:
receivers: [otlp]
processors: [batch]
exporters: [debug]
```

Expand Down
5 changes: 0 additions & 5 deletions confmap/provider/googlesecretmanagerprovider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ receivers:
protocols:
grpc:
http:
processors:
batch:

exporters:
logging:
Expand All @@ -41,15 +39,12 @@ service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, http]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [logging, http]
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging, http]

```
Expand Down
5 changes: 2 additions & 3 deletions confmap/provider/s3provider/testdata/otel-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ receivers:
http:

processors:
batch:
memory_limiter:
# 75% of maximum memory up to 4G
limit_mib: 1536
Expand All @@ -25,11 +24,11 @@ service:
pipelines:
traces:
receivers: [otlp]
processors: [memory_limiter, batch]
processors: [memory_limiter]
exporters: [debug]
metrics:
receivers: [otlp]
processors: [memory_limiter, batch]
processors: [memory_limiter]
exporters: [debug]

extensions: [zpages]
3 changes: 1 addition & 2 deletions connector/roundrobinconnector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ receivers:
otlp:
processors:
resourcedetection:
batch:
exporters:
prometheusremotewrite/1:
prometheusremotewrite/2:
Expand All @@ -60,7 +59,7 @@ service:
pipelines:
metrics:
receivers: [otlp]
processors: [resourcedetection, batch]
processors: [resourcedetection]
exporters: [roundrobin]
metrics/1:
receivers: [roundrobin]
Expand Down
4 changes: 0 additions & 4 deletions examples/secure-tracing/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ receivers:
cert_file: /etc/otel-collector.crt
key_file: /etc/otel-collector.key

processors:
batch:

exporters:
debug:
verbosity: detailed
Expand All @@ -18,6 +15,5 @@ service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [debug]

9 changes: 4 additions & 5 deletions exporter/googlecloudexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ These instructions are to get you up and running quickly with the GCP exporter i

2. **Create a configuration file `config.yaml`.** The example below shows a minimal recommended configuration that receives OTLP and sends data to GCP, in addition to verbose logging to help understand what is going on. It uses application default credentials (which we will set up in the next step).

Note that this configuration includes the recommended `memory_limiter` and `batch` plugins, which avoid high latency for reporting telemetry, and ensure that the collector itself will stay stable (not run out of memory) by dropping telemetry if needed.
Note that this configuration includes the recommended `memory_limiter` plugins, which avoid high latency for reporting telemetry, and ensure that the collector itself will stay stable (not run out of memory) by dropping telemetry if needed.

```yaml
receivers:
Expand All @@ -109,23 +109,22 @@ These instructions are to get you up and running quickly with the GCP exporter i
check_interval: 1s
limit_percentage: 65
spike_limit_percentage: 20
batch:
resourcedetection:
detectors: [gcp]
timeout: 10s
service:
pipelines:
traces:
receivers: [otlp]
processors: [memory_limiter, batch]
processors: [memory_limiter]
exporters: [googlecloud]
metrics:
receivers: [otlp]
processors: [memory_limiter, batch]
processors: [memory_limiter]
exporters: [googlecloud]
logs:
receivers: [otlp]
processors: [memory_limiter, batch]
processors: [memory_limiter]
exporters: [googlecloud]
```

Expand Down
4 changes: 0 additions & 4 deletions exporter/logzioexporter/example/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ exporters:
account_token: "<<LOGZIO_ACCOUNT_TOKEN>>"
#region: "<<LOGZIO_ACCOUNT_REGION_CODE>>" - (Optional): Your logz.io account region code. Defaults to "us". Required only if your logz.io region is different than US East. https://docs.logz.io/user-guide/accounts/account-region.html#available-regions

processors:
batch:

extensions:
pprof:
endpoint: :1777
Expand All @@ -26,7 +23,6 @@ service:
pipelines:
traces:
receivers: [jaeger, zipkin]
processors: [batch]
exporters: [logzio]

telemetry:
Expand Down
6 changes: 0 additions & 6 deletions exporter/tinybirdexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,6 @@ receivers:
grpc:
http:

processors:
batch:

exporters:
tinybird:
endpoint: ${OTEL_TINYBIRD_API_HOST}
Expand All @@ -156,14 +153,11 @@ service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [tinybird]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [tinybird]
logs:
receivers: [otlp]
processors: [batch]
exporters: [tinybird]
```
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ receivers:
exporters:
debug:

processors:
batch:

extensions:
health_check:
pprof:
Expand All @@ -35,5 +32,4 @@ service:
pipelines:
traces:
receivers: [kafka]
processors: [batch]
exporters: [debug]
3 changes: 1 addition & 2 deletions processor/groupbyattrsprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,11 @@ With the below configuration, the **groupbyattrs** will re-associate the spans w

```yaml
processors:
batch:
groupbyattrs:

pipelines:
traces:
processors: [batch, groupbyattrs/grouping]
processors: [groupbyattrs/grouping]
...
```

Expand Down