Using the HTTP source or VRL is there any way to store the source message on a separate field? #21604
-
Hello, I'm using vector to build something like an ingestion layer to make it easier to onboard new applications on our SIEM, for this I'm using the Any request made the I'm using I know that if the source message has a Is there any way to store the source message received by the http source in a different field? Or maybe tell vector to use a different field name for its My config is something like this:
The sample document I'm testing is this one:
And this how it looks like in Kafka I'm looking for to have something like this in Kafka:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After some searchs I found this guide and used this in my configuration:
With this I'm now at least able to change the name of the timestamp field that vector generates, but I would still like to have the source message in a separate field. I tried to add the setting |
Beta Was this translation helpful? Give feedback.
After some searchs I found this guide and used this in my configuration:
With this I'm now at least able to change the name of the timestamp field that vector generates, but I would still like to have the source message in a separate field.
I tried to add the setting
message_key: "vector_message"
to thelog_schema
, but it has no effect.