opentracing / specification

A place to document (and discuss) the OpenTracing specification. 🛑 This project is DEPRECATED! https://github.com/opentracing/specification/issues/163
http://opentracing.io/spec
Apache License 2.0
1.17k stars 182 forks source link

Opentracing information in a message #153

Closed venth closed 4 years ago

venth commented 4 years ago

Background

I model an asynchronous communication via Kafka using AsyncAPI specification and I’d like to describe there opentracing data to make the producing and consuming parties aware that such an information has to be supplied and could be consumed.

Problem

I went through the specification and couldn’t find information about the message format.

Questions to address

Please guide me to relevant part of the specification or provide the information about open tracing data structure I have to pass in a message.

yurishkuro commented 4 years ago

Working example with Kafka: https://github.com/PacktPublishing/Mastering-Distributed-Tracing/tree/master/Chapter05

venth commented 4 years ago

Thanks 👍