File tree 2 files changed +7
-0
lines changed
opentelemetry/proto/logs/v1
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Full list of differences found in [this compare](https://github.com/open-telemet
8
8
9
9
* Add a field for W3C-specified Trace Context flags to the ` Span ` and ` Link ` .
10
10
[ #503 ] ( https://github.com/open-telemetry/opentelemetry-proto/pull/503 )
11
+ * Add a field for W3C-specified Trace Context TraceState to the ` LogRecord ` .
12
+ [ #503 ] ( https://github.com/open-telemetry/opentelemetry-proto/pull/503 )
11
13
12
14
## 1.0.0 - 2023-07-03
13
15
Original file line number Diff line number Diff line change @@ -208,4 +208,9 @@ message LogRecord {
208
208
// - the field is not present,
209
209
// - the field contains an invalid value.
210
210
bytes span_id = 10 ;
211
+
212
+ // trace_state conveys information about request position in multiple distributed tracing graphs.
213
+ // It is a trace_state in w3c-trace-context format: https://www.w3.org/TR/trace-context/#tracestate-header
214
+ // See also https://github.com/w3c/distributed-tracing for more details about this field.
215
+ string trace_state = 12 ;
211
216
}
You can’t perform that action at this time.
0 commit comments