Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ release.
([#4439](https://github.com/open-telemetry/opentelemetry-specification/pull/4439))
- Stabilize `Logger.Enabled`.
([#4463](https://github.com/open-telemetry/opentelemetry-specification/pull/4463))
- Stabilize `EventName`.
([#4475](https://github.com/open-telemetry/opentelemetry-specification/pull/4475))

### Baggage

Expand Down
2 changes: 1 addition & 1 deletion spec-compliance-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Disclaimer: this list of features is still a work in progress, please refer to t
| LoggerProvider.ForceFlush | | | + | | + | | | + | | + | - | |
| Logger.Emit(LogRecord) | | | + | | + | | | + | | + | - | |
| Reuse Standard Attributes | X | + | | | | | | | | | | |
| LogRecord.Set EventName | | | | | | | | | | | | |
| LogRecord.Set EventName | | + | | | | | | | + | + | | |
| Logger.Enabled | X | + | | | | | | | + | + | | |
| SimpleLogRecordProcessor | | | + | | + | | | + | | + | | |
| BatchLogRecordProcessor | | | + | | + | | | + | | + | | |
Expand Down
2 changes: 1 addition & 1 deletion specification/logs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ The API MUST accept the following parameters:
- [Severity Text](./data-model.md#field-severitytext) (optional)
- [Body](./data-model.md#field-body) (optional)
- [Attributes](./data-model.md#field-attributes) (optional)
- **Status**: [Development](../document-status.md) - [Event Name](./data-model.md#field-eventname) (optional)
- [Event Name](./data-model.md#field-eventname) (optional)

**Status**: [Development](../document-status.md)

Expand Down
8 changes: 2 additions & 6 deletions specification/logs/data-model.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Logs Data Model

**Status**: [Stable](../document-status.md), except where otherwise specified
**Status**: [Stable](../document-status.md)

<details>
<summary>Table of Contents</summary>
Expand Down Expand Up @@ -101,8 +101,6 @@ The Data Model aims to successfully represent 3 sorts of logs and events:

### Events

**Status**: [Development](../document-status.md)

Events are OpenTelemetry's standardized format for LogRecords. All semantic
conventions defined for logs SHOULD be formatted as Events. Requirements and details for the Event format can be found in the [semantic conventions](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/general/events.md).

Expand Down Expand Up @@ -209,7 +207,7 @@ Body |The body of the log record.
Resource |Describes the source of the log.
InstrumentationScope|Describes the scope that emitted the log.
Attributes |Additional information about the event.
**Status**: [Development](../document-status.md) - EventName | Name that identifies the class / type of event.
EventName |Name that identifies the class / type of event.

Below is the detailed description of each field.

Expand Down Expand Up @@ -481,8 +479,6 @@ If included, they MUST follow the OpenTelemetry

### Field: `EventName`

**Status**: [Development](../document-status.md)

Type: string.

Description: Name that identifies the class / type of the [Event](#events).
Expand Down
2 changes: 1 addition & 1 deletion specification/logs/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ the following information added to the [LogRecord](data-model.md#log-and-event-r
* [`TraceId`](./data-model.md#field-traceid)
* [`SpanId`](./data-model.md#field-spanid)
* [`TraceFlags`](./data-model.md#field-traceflags)
* **Status**: [Development](../document-status.md) - [`EventName`](./data-model.md#field-eventname)
* [`EventName`](./data-model.md#field-eventname)

The SDK MAY provide an operation that makes a deep clone of a `ReadWriteLogRecord`.
The operation can be used by asynchronous processors (e.g. [Batching processor](#batching-processor))
Expand Down