-
Notifications
You must be signed in to change notification settings - Fork 1
fix: clarify and expand the default env vars the agent provides to the configs #142
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,9 +83,9 @@ processors: | |
|
||
exporters: | ||
otlphttp/observe: | ||
endpoint: ${env:OBSERVE_ENDPOINT} | ||
endpoint: ${env:OBSERVE_OTEL_ENDPOINT} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this works today and is just a cleanup? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes! This works, but it couldn't be used for prometheus or other collection as it had the |
||
headers: | ||
authorization: ${env:OBSERVE_TOKEN} | ||
authorization: ${env:OBSERVE_AUTHORIZATION_HEADER} | ||
sending_queue: | ||
num_consumers: 4 | ||
queue_size: 100 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where does this get used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nowhere yet, but I will use it for the prometheus remote write exporter as I'm doing the metrics conversion.