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
3 changes: 1 addition & 2 deletions setup/otel/getting-started/getting-started-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ presets:
# This is the config file for the collector:
config:
receivers:
nop: {}
otlp:
protocols:
grpc:
Expand Down Expand Up @@ -126,7 +125,7 @@ config:
processors: [memory_limiter, resource, batch]
exporters: [debug, otlp/suse-observability]
logs:
receivers: [nop]
receivers: [otlp]
processors: []
exporters: [nop]
```
Expand Down
3 changes: 1 addition & 2 deletions setup/otel/getting-started/getting-started-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ After installation modify the collector configuration by editing `/etc/otelcol-c
{% code title="config.yaml" lineNumbers="true" %}
```yaml
receivers:
nop: {}
otlp:
protocols:
# Only bind to localhost to keep the collector secure, see https://github.com/open-telemetry/opentelemetry-collector/blob/main/docs/security-best-practices.md#safeguards-against-denial-of-service-attacks
Expand Down Expand Up @@ -130,7 +129,7 @@ service:
processors: [memory_limiter, batch, resourcedetection/system]
exporters: [debug, otlp/suse-observability]
logs:
receivers: [nop]
receivers: [otlp]
processors: []
exporters: [nop]
```
Expand Down