File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ release.
23
23
24
24
### Logs
25
25
26
+ - Add ` Context ` as argument to ` LogRecordProcessor#onEmit ` .
27
+ ([ #2927 ] ( https://github.com/open-telemetry/opentelemetry-specification/pull/2927 ) )
28
+
26
29
### Resource
27
30
28
31
### Semantic Conventions
Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ fields:
179
179
180
180
- [ Timestamp] ( ./data-model.md#field-timestamp )
181
181
- [ Observed Timestamp] ( ./data-model.md#field-observedtimestamp )
182
- - [ Trace Context] ( ./data-model.md#trace-context-fields )
182
+ - [ Context] ( ../context/README.md )
183
+ including [ TraceContext] ( ./data-model.md#trace-context-fields )
183
184
- [ Severity Number] ( ./data-model.md#field-severitynumber )
184
185
- [ Severity Text] ( ./data-model.md#field-severitytext )
185
186
- [ Body] ( ./data-model.md#field-body )
Original file line number Diff line number Diff line change @@ -179,6 +179,10 @@ therefore it SHOULD NOT block or throw exceptions.
179
179
180
180
* ` logRecord ` - a [ ReadWriteLogRecord] ( #readwritelogrecord ) for the
181
181
emitted ` LogRecord ` .
182
+ * ` context ` - the ` Context ` that the SDK determined (the explicitly
183
+ passed ` Context ` , the current ` Context ` , or an empty ` Context ` if
184
+ the [ Logger] ( ./api.md#get-a-logger ) was obtained
185
+ with ` include_trace_context=false ` )
182
186
183
187
** Returns:** ` Void `
184
188
You can’t perform that action at this time.
0 commit comments