-
Hello, I'm trying to understand if Vector will support my use case. I have a source of log events that all contain a UUID. I'm looking to merge these with another JSON object that can only be accessed by a HTTP API, for example, at http://site.com//data. I understand this should be possible with the Lua transform, however I wanted to check if anyone had an idea of how this could be done without Lua to aid the performance of running this over every event. One idea I've had is using the new CSV Enrichment. A script next to vector could refresh the CSV script by calling http://site.com/all/data, and converting this into a CSV every minute, however I'm unsure if the enrichment is reloaded from disk after vector has first started up? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @owen5mith ! Currently the |
Beta Was this translation helpful? Give feedback.
Hi @owen5mith !
Currently the
lua
transform is the best option here. We do have an open issue for anhttp
transform that I think would cover this use case: #1385 . You can track there for any updates.