-
QuestionCurrently, the opentelemetry source in Vector can receive and decode OTLP (protobuf) payloads directly, parsing them into structured Vector events that can be used in transforms and sinks. Are there any plans to support OTLP (protobuf) as a native codec in the Kafka source (like Vector ConfigNo response Vector LogsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @tank-500m, Thank you for your question.
Yes, but then Vector uses an internal representation for the events for example:
And as you mentioned above then you will have to manipulate the above manually. Batching before shipping them somewhere outside of Vector is also challenging. See here:
I would like to experiment a bit with the existing protobuf decoder before committing to a dedicated |
Beta Was this translation helpful? Give feedback.
Hi @tank-500m,
Thank you for your question.
We do want to improve Vector/OTEL interoperability.
Yes, but then Vector uses an internal representation for the events for example:
And as you mentioned above then you will have…