Hello,
i have this king of log :
Aug 14 00:00:01 10.33.2.254 date=2015-08-14,time=00: 03:01, ...
I'm not interrested in the first date and time (Aug 14 00:00:01) but by the second one : ( date=2015-08-14 and time=00: 03:01)
my first problem was the " " in this time field.
i removed it with :
filter {
mutate {
gsub => [
"time", " ", ""
]
}
}
now, i would like to merge date and time as a an unique date field and not as a string, so it can be usable in kibana.
thanks for reading