Hi,
I'm trying to parse a part of message.
My general grok is working, but this one doesn't.
I have message like that:
Login failed for user 'USR_DELTA'. Reason: The account is disabled. [CLIENT: xxx.xxx.xxx.xxx]
In first time, i grok parse IP with:
match => { "message" => "%{IPV4:ipClient}" }
add_tag => ["ipClient"]
And it works well.
In a second time, i try to just parse Login failed for user 'USR_DELTA' with:
match => { "message" => "Login failed for user={USERNAME:user}" }
add_tag => ["user"]
But it doesn't work. I don't have error in rubydebug but i don't have a new field with the user, any idea? Problem with syntax maybe?
Best regards.
Jonathan
