1// DO NOT EDIT; THIS FILE IS AUTOGENERATED FROM ../../../lightstep.proto
2syntax = "proto3";
3
4package lightstep;
5
6option go_package = "lightsteppb";
7
8// The standard carrier for binary context propagation into LightStep.
9message BinaryCarrier {
10  // "text_ctx" was deprecated following lightstep-tracer-cpp-0.36
11  repeated bytes deprecated_text_ctx = 1;
12
13  // The Opentracing "basictracer" proto.
14  BasicTracerCarrier basic_ctx = 2;
15}
16
17// Copy of https://github.com/opentracing/basictracer-go/blob/master/wire/wire.proto
18message BasicTracerCarrier {
19  fixed64 trace_id = 1;
20  fixed64 span_id = 2;
21  bool    sampled = 3;
22  map<string, string> baggage_items = 4;
23}
24