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

[exporter/datadog] The command should be /otelcol-contrib in the example #9425

Merged
merged 4 commits into from
Apr 25, 2022
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- `prometheusexporter`: Prometheus fails to generate logs when prometheus exporter produced a check exception occurs. (#8949)
- `resourcedetectionprocessor`: Wire docker detector (#9372)
- `kafkametricsreceiver`: The kafkametricsreceiver was changed to connect to kafka during scrape, rather than startup. If kafka is unavailable the receiver will attempt to connect during subsequent scrapes until succcessful (#8817).
- `datadogexporter`: Update Kubernetes example manifest to new executable name. (#9425).

## v0.49.0

Expand Down
8 changes: 4 additions & 4 deletions exporter/datadogexporter/example/example_k8s_manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ spec:
spec:
containers:
- command:
- "/otelcontribcol"
- "/otelcol-contrib"
- "--config=/conf/otel-agent-config.yaml"
image: otel/opentelemetry-collector-contrib:0.39.0
image: otel/opentelemetry-collector-contrib:0.49.0
name: otel-agent
resources:
limits:
Expand Down Expand Up @@ -234,9 +234,9 @@ spec:
spec:
containers:
- command:
- "/otelcontribcol"
- "/otelcol-contrib"
- "--config=/conf/otel-collector-config.yaml"
image: otel/opentelemetry-collector-contrib:latest
image: otel/opentelemetry-collector-contrib:0.49.0
name: otel-collector
resources:
limits:
Expand Down