Stabilize complex AnyValue types and related attribute limits#4794
Merged
lmolkova merged 10 commits intoopen-telemetry:mainfrom Jan 7, 2026
Merged
Stabilize complex AnyValue types and related attribute limits#4794lmolkova merged 10 commits intoopen-telemetry:mainfrom
lmolkova merged 10 commits intoopen-telemetry:mainfrom
Conversation
lmolkova
approved these changes
Dec 10, 2025
Member
|
FYI: no concerns shared in the feedback-tracking issue open-telemetry/community#3119 (we advertised it in https://opentelemetry.io/blog/2025/complex-attribute-types/) |
trask
approved these changes
Dec 16, 2025
jack-berg
approved these changes
Dec 29, 2025
tsloughter
approved these changes
Dec 30, 2025
cijothomas
approved these changes
Jan 5, 2026
Member
|
@open-telemetry/technical-committee please take a look, the goal is to merge is tomorrow (unless there are concerns) |
MrAlias
approved these changes
Jan 6, 2026
dashpole
approved these changes
Jan 6, 2026
tedsuo
approved these changes
Jan 6, 2026
reyang
approved these changes
Jan 6, 2026
tigrannajaryan
approved these changes
Jan 6, 2026
Merged
zeitlinger
pushed a commit
to zeitlinger/opentelemetry-specification
that referenced
this pull request
Jan 9, 2026
### Metrics - Stabilize part of `Enabled` SDK for synchronous instruments. ([open-telemetry#4787](open-telemetry#4787)) ### Logs - Add optional Ergonomic API. ([open-telemetry#4741](open-telemetry#4741)) ### SDK Configuration - Declarative configuration: clarify default behavior and validation requirements of `create` and `parse`. ([open-telemetry#4780](open-telemetry#4780)) - Declarative configuration: add optional programmatic customization to `create`, and add related supplemental guidelines. ([open-telemetry#4777](open-telemetry#4777)) - Declarative configuration: add links between SDK extension plugins and corresponding declarative config types. ([open-telemetry#4802](open-telemetry#4802)) - Declarative configuration: clarify Registry ComponentProvider `type` parameter ([open-telemetry#4799](open-telemetry#4799)) ### Common - Stabilize complex `AnyValue` attribute value types and related attribute limits. ([open-telemetry#4794](open-telemetry#4794))
This file contains hidden or 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
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.
Fixes #4710
OTEP #4485 (Extending attributes to support complex values)
What
Stabilize the complex
AnyValueattribute value types and the corresponding attribute limits.Simplifiy the Logs Data Model to rely on
AnyValueand Attribute Collections instead of customany/map<string, any>types.Why
Per the OTEP-implementing PR #4485 tht was merged on 2025‑07‑15, so the 6‑month window ends around 2026‑01‑15. This PR is intended to be merged around 2026‑01‑15, in line with that requirement.
OpenTelemetry Go and Java treat the common package as a stable cross‑cutting surface. They need these
AnyValuetypes and limits to be Stable in the spec before they can add corresponding features to their APIs, SDKs, and exporters.Prototypes
We have three independent prototypes that exercised the complex
AnyValueattribute types and limits:In summary, they:
AnyValue.Other
I was thinking about adding something to
spec-compliance-matrix.md, but I do not see any obvious place where it could be located. I think we can tackle it in a separate PR if there would be a demand for it.EDIT: Tracked under #4808