Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
feat(trace-otlp-grpc): configure security with env vars #2827
feat(trace-otlp-grpc): configure security with env vars #2827
Changes from 53 commits
a614e9e
5de22f2
abb85b7
25ff0a7
ff0c262
10ac242
b8f6b79
ec98d2e
5d1cc75
703ff36
3c124fe
fd39a9a
cee07d3
1eba925
66c9471
dcba873
87ca75c
1fb546e
27b601f
e4128c4
b977006
11efece
e4bccd1
93e2b5a
9eb7b09
bbb3643
c954b8a
72ff643
ebec97c
5f5de7c
cf08aea
30196c1
02e5b98
1e19f03
ba28072
bb8dfaa
ba6b11f
16c62b7
899d478
6126f5d
941937d
5b3b351
748db96
79e0ae4
30bdd55
b99dfa2
4f275e7
0828912
2182c5e
ab12999
9289b9e
2156472
39e3126
4ae7510
531f19a
11df1a1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Do we need to validate a hardcoded default URL?
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.
Yes because the
DEFAULT_COLLECTOR_URL
didn't have a scheme so we didn't need to pass it tovalidateAndNormalizeUrl
like we do when user adds a url toconfig.url
or when using env vars.Now that I updated
DEFAULT_COLLECTOR_URL
to have an http scheme (like we discussed in the sig so it matches the spec) so we need to pass it tovalidateAndNormalizeUrl
to remove the scheme.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.
Ditto
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.
Same answer as this one