Getting Started with OpenTelemetry - Ted Young, Lightstep

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 5

  • @dav1dshu1
    @dav1dshu1 2 года назад +1

    Very good introduction. I have a question: My application has multiple components that are loosely coupled through Kafka. The message gets created in the first module and sends it to a topic. Multiple modules consume the message. Some modules will create new messages to other topics. The question is, can Kafka instrumented to support OpenTelemetry? Thanks.

  • @rajeshantony74
    @rajeshantony74 3 года назад

    awesome!!

  • @CeezGeez
    @CeezGeez 3 года назад

    How much overhead does adding this context object (which can grow in size) cause?

    • @dimitrisfinas1225
      @dimitrisfinas1225 2 года назад +1

      the context object is a list of key/values so it's quite small (100-500bytes), but it can be bigger if you attach too much log events

    • @CeezGeez
      @CeezGeez 2 года назад

      @@dimitrisfinas1225 thanks!