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.
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.
awesome!!
How much overhead does adding this context object (which can grow in size) cause?
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
@@dimitrisfinas1225 thanks!