Is it possible to create own / virtual events in logstash?
I intent to do the following:
1. I receive following log line:
timestamp, value_1, value_2, value_3
2. now I want to create 3 events out of it:
Code: Select all
1. @timestamp = timestamp
value = value_1
2. @timestamp = timestamp
value = value_2
3. @timestamp = timestamp
value = value_3
Thanks, Andreas