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

[DO NOT REVIEW] test PR to show breaking change in expand #37122

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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 exporter/datadogexporter/examples/collector-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exporters:
datadog:
api:
site: ${env:DD_SITE}
key: ${env:DD_API_KEY}
key: ${DD_API_KEY}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mx-psi changing this from ${env:DD_API_KEY} to ${DD_API_KEY} breaks the test https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/12697854235/job/35395198770?pr=37122

exporters::datadog: api::key contains invalid characters: invalid characters: $, {, _, P, I, _, K, Y, }

this error indicates ${DD_API_KEY} is not expanded


service:
pipelines:
Expand Down
Loading