Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nop exporter to distributions #566

Merged
merged 2 commits into from
May 30, 2024
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
2 changes: 1 addition & 1 deletion distributions/otelcol-k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ The full list of components is available in the [manifest](manifest.yaml).
- Although you could run a Collector in Kubernetes to reach out to any endpoint, this distribution is not targeting that use case. This distribution is for monitoring Kubernetes and the processes it runs.
- All components must be vendor-neutral.
- Only exporters that use OTLP are allowed.
- To facilitate troubleshooting, the debug exporter and file exporter are exceptions.
- To facilitate troubleshooting, the nop, debug, and file exporters are exceptions.
- All technologies OTel promised to support will be included as receivers. Specifically this means the `jaegerreceiver`, `zipkinreceiver`, `opencensusreceiver`, and `prometheusreceiver` will be included.
1 change: 1 addition & 0 deletions distributions/otelcol-k8s/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ extensions:

exporters:
- gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.101.0
- gomod: go.opentelemetry.io/collector/exporter/nopexporter v0.101.0
- gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.101.0
- gomod: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.101.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter v0.101.0
Expand Down
Loading