-
Notifications
You must be signed in to change notification settings - Fork 894
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 example of env expansion with non-standard integer notation #3959
Labels
area:configuration
Related to configuring the SDK
triage:accepted:ready
Ready to be implemented. Small enough or uncontroversial enough to be implemented without sponsor
Comments
4 tasks
trask
added
triage:deciding:community-feedback
Open to community discussion. If the community can provide sufficient reasoning, it may be accepted
triage:accepted:ready
Ready to be implemented. Small enough or uncontroversial enough to be implemented without sponsor
and removed
triage:deciding:community-feedback
Open to community discussion. If the community can provide sufficient reasoning, it may be accepted
labels
Mar 26, 2024
cc @open-telemetry/configuration-maintainers |
1 task
jack-berg
pushed a commit
that referenced
this issue
May 8, 2024
Updates #3959 ## Changes Adds example for using an integer in hexadecimal notation. The intention is to show the difference when quoting vs not quoting and make explicit that quoting means keeping the original representation (we already have the `true` example but this one has two different representations). I think this is already implied by the text so this is only a change in the example. * [x] Related issues #3959, part of #3963 --------- Co-authored-by: Robert Pająk <[email protected]>
Fixed by #3975 |
github-project-automation
bot
moved this from Spec - Accepted
to Completed Projects
in 🔭 Main Backlog
May 9, 2024
carlosalberto
pushed a commit
to carlosalberto/opentelemetry-specification
that referenced
this issue
Oct 31, 2024
…y#3975) Updates open-telemetry#3959 ## Changes Adds example for using an integer in hexadecimal notation. The intention is to show the difference when quoting vs not quoting and make explicit that quoting means keeping the original representation (we already have the `true` example but this one has two different representations). I think this is already implied by the text so this is only a change in the example. * [x] Related issues open-telemetry#3959, part of open-telemetry#3963 --------- Co-authored-by: Robert Pająk <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area:configuration
Related to configuring the SDK
triage:accepted:ready
Ready to be implemented. Small enough or uncontroversial enough to be implemented without sponsor
Consider the case where the variable
HEX_VALUE
is set to0xdeadbeef
, and a configuration field such as:where
string_field
has typestring
on the JSON schema. What should its value be? I am not sure which of the following would be correct per the spec:0xdeadbeef
(preserving the original presentation format)3735928559
(representing with a standard base 10 format)Having an explicit example of this case on the spec would be useful to understand it.
The text was updated successfully, but these errors were encountered: