jlandersen / vscode-kafka

Apache Kafka® extension for Visual Studio Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for Kafka headers in the .kafka file

mscamargo opened this issue · comments

Hi there!

First of all, thanks for your great work! This is a very useful extension 😃

In the project I'm working on, we have to send metadata in kafka headers, but after some testing of the extension and some code reading, it seems that the extension doesn't support sending headers in kafka file. Are you considering this in the roadmap? It would be a great addition.

Thanks!

First of all, thanks for your great work! This is a very useful extension

Glad vscode-kafka can help you.

In the project I'm working on, we have to send metadata in kafka headers, but after some testing of the extension and some code reading, it seems that the extension doesn't support sending headers in kafka file.

Indeed it's not supported.

Are you considering this in the roadmap? It would be a great addition.

The question is how to writ ethos hearders which is an array of key / value:

PRODUCER
headers: [
  {
    key: ....
    value: .....
  },
{
    key: ....
    value: .....
  }
]

@fbricon @jlandersen have you some idea?

Hello!
My implementation #209

Fixed with #209