Skip to content

Commit 406d3e3

Browse files
authored
Stabilize EventName (#4475)
1 parent 496a149 commit 406d3e3

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ release.
2828
([#4439](https://github.com/open-telemetry/opentelemetry-specification/pull/4439))
2929
- Stabilize `Logger.Enabled`.
3030
([#4463](https://github.com/open-telemetry/opentelemetry-specification/pull/4463))
31+
- Stabilize `EventName`.
32+
([#4475](https://github.com/open-telemetry/opentelemetry-specification/pull/4475))
3133

3234
### Baggage
3335

spec-compliance-matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Disclaimer: this list of features is still a work in progress, please refer to t
199199
| LoggerProvider.ForceFlush | | | + | | + | | | + | | + | - | |
200200
| Logger.Emit(LogRecord) | | | + | | + | | | + | | + | - | |
201201
| Reuse Standard Attributes | X | + | | | | | | | | | | |
202-
| LogRecord.Set EventName | | | | | | | | | | | | |
202+
| LogRecord.Set EventName | | + | | | | | | | + | + | | |
203203
| Logger.Enabled | X | + | | | | | | | + | + | | |
204204
| SimpleLogRecordProcessor | | | + | | + | | | + | | + | | |
205205
| BatchLogRecordProcessor | | | + | | + | | | + | | + | | |

specification/logs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The API MUST accept the following parameters:
122122
- [Severity Text](./data-model.md#field-severitytext) (optional)
123123
- [Body](./data-model.md#field-body) (optional)
124124
- [Attributes](./data-model.md#field-attributes) (optional)
125-
- **Status**: [Development](../document-status.md) - [Event Name](./data-model.md#field-eventname) (optional)
125+
- [Event Name](./data-model.md#field-eventname) (optional)
126126

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

specification/logs/data-model.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Logs Data Model
22

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

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

102102
### Events
103103

104-
**Status**: [Development](../document-status.md)
105-
106104
Events are OpenTelemetry's standardized format for LogRecords. All semantic
107105
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).
108106

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

214212
Below is the detailed description of each field.
215213

@@ -481,8 +479,6 @@ If included, they MUST follow the OpenTelemetry
481479

482480
### Field: `EventName`
483481

484-
**Status**: [Development](../document-status.md)
485-
486482
Type: string.
487483

488484
Description: Name that identifies the class / type of the [Event](#events).

specification/logs/sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ the following information added to the [LogRecord](data-model.md#log-and-event-r
247247
* [`TraceId`](./data-model.md#field-traceid)
248248
* [`SpanId`](./data-model.md#field-spanid)
249249
* [`TraceFlags`](./data-model.md#field-traceflags)
250-
* **Status**: [Development](../document-status.md) - [`EventName`](./data-model.md#field-eventname)
250+
* [`EventName`](./data-model.md#field-eventname)
251251

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

0 commit comments

Comments
 (0)