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;
|
||
|
}
|