Good afternoon to everyone, my question is quite simple, but I'm still quite new to the elk stack. it is necessary to digest the expression through the grok filter
Mon Aug 9 15:18:25 +07 2021 mail 0
the date passes normally
%{SYSLOGTIMESTAMP}
then need to exclude the following columns +07 and 2021
if I delete these columns +07 and 2021, then the filter passes
and
%{SYSLOGTIMESTAMP} %{HOSTNAME}
it s works
but I need the grok filter to recognize the date itself, delete the columns +07 2021
and then recognize the hostname and the number.
I apologize if I wrote in a confused way.
p.s.
i am changed format date, now it has the form
Mon Aug 9 17:21:26 mail 0
The topic can be closed
my filter
%{SYSLOGTIMESTAMP} %{HOSTNAME} %{NUMBER:value:int}
work))