Skip to content

Commit

Permalink
Update opentelemetry/proto/trace/v1/trace.proto
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua MacDonald <[email protected]>
  • Loading branch information
estolfo and jmacd authored Oct 12, 2023
1 parent 57ede43 commit 84a63e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opentelemetry/proto/trace/v1/trace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ enum SpanFlags {
enum SpanFlagsContextIsRemote {
// Older clients may not set this field, so 00 represents that this value
// has not been set.
SPAN_FLAGS_PARENT_OR_LINK_IS_REMOTE_UNKNOWN = 0;
SPAN_FLAGS_CONTEXT_IS_REMOTE_UNKNOWN = 0;
// The parent or linked span is remote: 11
SPAN_FLAGS_PARENT_OR_LINK_IS_REMOTE = 0x00000300;
SPAN_FLAGS_CONTEXT_IS_REMOTE = 0x00000300;
// The parent or linked span is not remote: 01
SPAN_FLAGS_PARENT_OR_LINK_IS_NOT_REMOTE = 0x00000100;
SPAN_FLAGS_CONTEXT_IS_NOT_REMOTE = 0x00000100;
}

0 comments on commit 84a63e2

Please sign in to comment.