Hi,
I'm in internship and i have to do configure ELK.
The problem is that I can not get the date of the logs in the timestamp of kibana.
I think it's not difficult but i'm not arrived.
My filter is :
filter {
if "kibana" in [message] { drop { } }
grok {
match => [
"message",
"(?%MONTH}/%{MONTHDAY}/%{HOUR}:%{MINUTE}:%{SECOND})"
]
}
date {
match => ["mytimestamp", "dd/MMM/YYYY:HH:mm:ss Z"]
}
}
And my log like this :
Please someone can help me?
Thank you