Hi!
I'm working with logstash in order to parse auditd logs. I tested my patters in http://grokconstructor.appspot.com/do/match and https://grokdebug.herokuapp.com/ and seems working as expected.
But.. it's not working, always returns _grokparsefailure and I can't find the error
My log string is:
type=CWD msg=audit(1568980959.680:12113): cwd="/home/ec2-user"
My pattern is:
type=%{WORD:atype} msg=audit(%{NUMBER:aepoch}:%{NUMBER:acount}): cwd=%{GREEDYDATA:aworkingdir}
What's going on?