mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 21:49:54 +00:00
11 lines
212 B
Protocol Buffer
11 lines
212 B
Protocol Buffer
syntax = "proto3";
|
|
package loggabletracer.wire;
|
|
option go_package = "wire";
|
|
|
|
message TracerState {
|
|
fixed64 trace_id = 1;
|
|
fixed64 span_id = 2;
|
|
bool sampled = 3;
|
|
map<string, string> baggage_items = 4;
|
|
}
|