Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ release.

- Add `Enabled` opt-in operation to the `LogRecordProcessor`.
([#4439](https://github.com/open-telemetry/opentelemetry-specification/pull/4439))
- Document `Extended Attributes` as the recommended term for new types representing
extended attributes.
([#4462](https://github.com/open-telemetry/opentelemetry-specification/pull/4462))

### Baggage

Expand Down
2 changes: 1 addition & 1 deletion specification/logs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The API MUST accept the following parameters:
- [Severity Number](./data-model.md#field-severitynumber) (optional)
- [Severity Text](./data-model.md#field-severitytext) (optional)
- [Body](./data-model.md#field-body) (optional)
- [Attributes](./data-model.md#field-attributes) (optional)
- [Extended Attributes](./data-model.md#field-attributes) (optional)
- **Status**: [Development](../document-status.md) - [Event Name](./data-model.md#field-eventname) (optional)

**Status**: [Development](../document-status.md)
Expand Down
3 changes: 3 additions & 0 deletions specification/logs/data-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,9 @@ they all have the same value of `InstrumentationScope`. This field is optional.

Type: [`map<string, any>`](#type-mapstring-any).

Implementations that define a new type to represent extended attributes SHOULD use
the term `Extended Attributes`.
Comment on lines +465 to +466
Copy link
Member

@pellared pellared Mar 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does "use the term" means? Moreover, why would we use a term that is not defined anywhere else?


Description: Additional information about the specific event occurrence. Unlike
the `Resource` field, which is fixed for a particular source, `Attributes` can
vary for each occurrence of the event coming from the same source. Can contain
Expand Down
Loading