Hi,
I have a log shipped through Filebeat with date like Fri Nov 11 11:00:39 GMT 2016. I would like to add this to a timestamp variable in Logstash using match filter like;
(?<timestamp>%{DAY} %{MONTH} %{MONTHDAY} %{HOUR}:?%{MINUTE}(?::?%{SECOND}) %{Z} 20%{YEAR})
This is giving me a _grokparsefailure. If I give GMT instead of %{Z}, it is working fine. How can I fix this?
Thanks in advance..