Apologies I am new to ELK and Logstash so this may be a simple solution.
I have a field that is currently in the elk stack, it is passing through Logstash. The field is dynamic in that is can have any number of values. The values are text that are comma separated. I need the field to be split, with the values being passed new fields
example input field: [ server1, server2, server3, server4]
output needed: [server1field] = server1
[server2field] = server1
[server3field] = server1
[server4field] = server1
Any help is appreciated