Hi guys, I have logs in format:
Mar 23 11:54:35 server [Controller] [Thread-530] ERROR Connection error
I tried to use next filter, but it doesn't work,
filter {
if [type] == "data" {
grok {
match => {
"message" => [
"^%{TIMESTAMP_ISO8601:timestamp} %{GREEDYDATA}$"
]
}
}
date {
match => [ "timestamp", "MMM dd HH:mm:ss" ]
}
}
}
Any one had similar issues?
Thanks