OTEL in Practice: Context Propapagtion in Distributed Tracing with Doug Ramirez

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 6

  • @kimbohlovette173
    @kimbohlovette173 8 місяців тому

    Yes as someone who wants to contribute to otel this video helps me alot to understand how it works

  • @krernertok221
    @krernertok221 6 місяців тому

    This was very helpful, thank you very much!

  • @austinclark3439
    @austinclark3439 3 місяці тому

    For very large existing services, it would seem that interfaces would need to be refactored to include space for a trace_contect (method1, calls method2, calls method3, which enqueues task to ThreadPool...). That sound correct?

  • @АлексейНаумов-ш1р
    @АлексейНаумов-ш1р 10 місяців тому +1

    Hi guys! Thank for the video, it was really useful.
    By the way, can you share some materials on how to leverage context propagation to FastAPI auto-instrumentation?

  • @viralvora5002
    @viralvora5002 7 місяців тому

    I am struggling how we can propagate trace across grpc services. Can you please provide some direction?

    • @LtdJorge
      @LtdJorge Місяць тому

      The standard for HTTP is by associating the trace id to the headers as in the W3C Trace Context spec. For gRPC, this trace id should be sent in the metadata, as far as I know.