You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
699 B

package lightstep
// keys for ls meta span events
const LSMetaEvent_MetaEventKey = "lightstep.meta_event"
const LSMetaEvent_PropagationFormatKey = "lightstep.propagation_format"
const LSMetaEvent_TraceIdKey = "lightstep.trace_id"
const LSMetaEvent_SpanIdKey = "lightstep.span_id"
const LSMetaEvent_TracerGuidKey = "lightstep.tracer_guid"
// operation names for ls meta span events
const LSMetaEvent_ExtractOperation = "lightstep.extract_span"
const LSMetaEvent_InjectOperation = "lightstep.inject_span"
const LSMetaEvent_SpanStartOperation = "lightstep.span_start"
const LSMetaEvent_SpanFinishOperation = "lightstep.span_finish"
const LSMetaEvent_TracerCreateOperation = "lightstep.tracer_create"