-
Notifications
You must be signed in to change notification settings - Fork 897
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
Prohibit usage of enum value name strings in OTLP/JSON #2758
Merged
bogdandrutu
merged 3 commits into
open-telemetry:main
from
tigrannajaryan:feature/tigran/enums-otlp-json
Sep 19, 2022
Merged
Prohibit usage of enum value name strings in OTLP/JSON #2758
bogdandrutu
merged 3 commits into
open-telemetry:main
from
tigrannajaryan:feature/tigran/enums-otlp-json
Sep 19, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dyladan
approved these changes
Aug 29, 2022
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.
LGTM % grammar nits
carlosalberto
approved these changes
Aug 30, 2022
Resolves open-telemetry/opentelemetry-proto#424 This change disallows using enum value names as strings in OTLP/JSON and requires to use enum integer values only.
tigrannajaryan
force-pushed
the
feature/tigran/enums-otlp-json
branch
from
August 30, 2022 14:55
6550c72
to
10b025b
Compare
jmacd
approved these changes
Aug 30, 2022
scheler
reviewed
Aug 30, 2022
bogdandrutu
approved these changes
Sep 1, 2022
carlosalberto
added
the
spec:protocol
Related to the specification/protocol directory
label
Sep 2, 2022
reyang
approved these changes
Sep 9, 2022
pichlermarc
approved these changes
Sep 12, 2022
jack-berg
approved these changes
Sep 13, 2022
9 tasks
This was referenced Oct 7, 2022
tigrannajaryan
added a commit
to tigrannajaryan/opentelemetry-specification
that referenced
this pull request
Oct 17, 2022
- The severityNumber field is an enum and must use a numeric value according this: open-telemetry#2758 - Link to a more appropriate section of otlp.md doc.
This was referenced Oct 18, 2022
tigrannajaryan
added a commit
to tigrannajaryan/opentelemetry-specification
that referenced
this pull request
Nov 2, 2022
- The severityNumber field is an enum and must use a numeric value according this: open-telemetry#2758 - Link to a more appropriate section of otlp.md doc.
tigrannajaryan
added a commit
to tigrannajaryan/opentelemetry-specification
that referenced
this pull request
Nov 2, 2022
- The severityNumber field is an enum and must use a numeric value according this: open-telemetry#2758 - Link to a more appropriate section of otlp.md doc.
tigrannajaryan
added a commit
that referenced
this pull request
Nov 3, 2022
- The severityNumber field is an enum and must use a numeric value according this: #2758 - Link to a more appropriate section of otlp.md doc. - Remove deprecatedCode - Use numeric value for status code
lmolkova
pushed a commit
to lmolkova/opentelemetry-specification
that referenced
this pull request
Nov 3, 2022
…metry#2886) - The severityNumber field is an enum and must use a numeric value according this: open-telemetry#2758 - Link to a more appropriate section of otlp.md doc. - Remove deprecatedCode - Use numeric value for status code
ChengJinbao
added a commit
to ChengJinbao/opentelemetry-specification
that referenced
this pull request
Nov 16, 2022
- The severityNumber field is an enum and must use a numeric value according this: open-telemetry/opentelemetry-specification#2758 - Link to a more appropriate section of otlp.md doc. - Remove deprecatedCode - Use numeric value for status code
3 tasks
joaopgrassi
pushed a commit
to dynatrace-oss-contrib/semantic-conventions
that referenced
this pull request
Mar 21, 2024
- The severityNumber field is an enum and must use a numeric value according this: open-telemetry/opentelemetry-specification#2758 - Link to a more appropriate section of otlp.md doc. - Remove deprecatedCode - Use numeric value for status code
carlosalberto
pushed a commit
to carlosalberto/opentelemetry-specification
that referenced
this pull request
Oct 31, 2024
…y#2758) * Prohibit usage of enum value name strings in OTLP/JSON Resolves open-telemetry/opentelemetry-proto#424 This change disallows using enum value names as strings in OTLP/JSON and requires to use enum integer values only. * Fix grammar Co-authored-by: Bogdan Drutu <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Resolves open-telemetry/opentelemetry-proto#424
This change disallows using enum value names as strings
in OTLP/JSON and requires to use enum integer values only.
This change is stacked on top of #2756
which needs to be merged first.