Hello,
I have a date and time field in my logs, see below first lines of field, I've omitted the other fields :
09/11/2017 17:06
09/11/2017 17:06
09/11/2017 17:06
09/11/2017 17:06
09/11/2017 17:07
09/11/2017 17:07
09/11/2017 17:09
09/11/2017 17:09
09/11/2017 17:10
When I upload my logs to Kibana it wont recognize this as time and date so I can't do any time analysis on my logs
input {
file {
path => "****"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
csv {
separator => ","
columns => ["timedate","connection_protocol","protocol","srcip","srcport","dstip","dstport","hostname"]
}
date{
match => ["timedate", "dd/MM/yyyy HH:mm:ss"]
}
}
output {
elasticsearch {
hosts => "http://localhost:9200"
index => "timetesting"
}
stdout {}
}
~