Skip to content

Commit acc2f5f

Browse files
author
Justin Carter
authored
Fix order of high and low parts of the trace_id in jaeger links (#117)
1 parent 94ec6bd commit acc2f5f

File tree

1 file changed

+1
-1
lines changed
  • opentelemetry-jaeger/src

1 file changed

+1
-1
lines changed

opentelemetry-jaeger/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,8 @@ fn links_to_references(links: &sdk::EvictedQueue<api::Link>) -> Option<Vec<jaege
364364
// see https://github.com/open-telemetry/opentelemetry-specification/issues/65
365365
jaeger::SpanRef::new(
366366
jaeger::SpanRefType::ChildOf,
367-
trace_id_high,
368367
trace_id_low,
368+
trace_id_high,
369369
span_context.span_id().to_u64() as i64,
370370
)
371371
})

0 commit comments

Comments
 (0)