Hello.
Could you kindly help me to solve one little problem?
I have log strings look like as:
20160919;11:09:32;Username;E;Creating Report;ReportName;3;ReportNameAgain|11:09:32|1|02.07.2016|02.08.2016;;
I load them to logstash using csv and everything works fine.
But I need to get some substrings each in own field. I marked desireable substring bold.
Please see an example below:
20160919;11:09:32;Username;E;Creating Report;ReportName;3;ReportNameAgain|11:09:32|1|02.07.2016|02.08.2016;;
I'd like to get following result:
ReportNameAgain => Field named "ReportName"
11:09:32 => Field "Start time"
1 => Report status
02.07.2016 => BeginReport
02.08.2016 => EndReport
The difficulty is another delimiter "|"
I don't know how to work with it. I'm newbie in logstash, so I'd like to ask you to help me to solve this issue.
Thanks in advance.