Hi there,
if i have data like this [{...},{...},{...}] how can i split them into different documents like
document 1 => {...}
document 2 => {...}
document 3 => {...}
so in that way, I can use the json filter to spread out the data inside { } like this:
json {
source => "message"
}
Thanks