Add trace_guid to thrift reporting structure

This commit is contained in:
bcronin 2016-04-25 15:36:53 -07:00
Родитель 17d9843e45
Коммит 15c8031654
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -106,6 +106,7 @@ class ClientSpan
rec = SpanRecord.new(runtime_guid: @tracer.guid.to_s,
span_guid: @guid.to_s,
trace_guid: @trace_guid.to_s,
span_name: @operation.to_s,
attributes: attributes,
oldest_micros: @start_micros.to_i,

Просмотреть файл

@ -91,6 +91,11 @@ describe LightStep do
children2.each(&:finish)
parent1.finish
parent2.finish
(children1.concat children2).each do |child|
thrift_data = child.to_thrift
expect(thrift_data.trace_guid).to eq(child.trace_guid)
end
end
it 'should handle all valid payloads types' do