create virtual event?
Posted: Mon Jun 20, 2016 8:51 am
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:
This would workaround the fact, that I can only show multiple lines in a histogram for the same field name. So it does not work to store the values in separate fields with different names.
Thanks, Andreas
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