Create events in logstash?

Hi,

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 all1. @timestamp = timestamp
    value = value_1

  3. @timestamp = timestamp
    value = value_2

  4. @timestamp = timestamp
    value = value_3

Thanks, Andreas

Have a look at the clone filter.