Skip to content

Commit

Permalink
feat(types): add thread entity id to protobuf
Browse files Browse the repository at this point in the history
As it is now available, add the thread entity id to the protobuf.
  • Loading branch information
AlonZivony committed Sep 26, 2023
1 parent 704de05 commit 29bf9d0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions types/api/v1beta1/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@ message User {
message Thread {
google.protobuf.Timestamp start = 1;
string name = 2;
google.protobuf.UInt32Value tid = 3;
google.protobuf.UInt32Value namespaced_tid = 4;
string syscall = 5;
bool compat = 6;
optional UserStackTrace user_stack_trace = 7;
google.protobuf.UInt32Value entity_id = 3;
google.protobuf.UInt32Value tid = 4;
google.protobuf.UInt32Value namespaced_tid = 5;
string syscall = 6;
bool compat = 7;
optional UserStackTrace user_stack_trace = 8;
}

message UserStackTrace {
Expand Down

0 comments on commit 29bf9d0

Please sign in to comment.