tikv/minitrace-rust

expose both trace_id_high and trace_id_low in the jaeger interface

waynexia opened this issue · 2 comments

trace_id_low: trace_id as i64,
trace_id_high: 0,

Both open-telemetry's protocol and jaeger's protocol can accept up to u128 as trace id. It would be good if minitrace-jaeger also provided the similar API

I'm willing to make this change if it sounds reasonable 🤗

TraceId is changed to u128 in #153