Change date format from 2/23/1944 to 1944-02-23

Here is my logstash.conf filter section
filter {
csv {
separator => ";"
columns => [
"Nummer","HP_VP","HP_VN","HP_VP_VORNAME","HP_VN_VORNAME","HP_VP_NACHNAME","HP_VN_NACHNAME","ADDRESS","DateOfBirth"
]
}
date {
match => [ "DateOfBirth", "yyyy-MM-dd" ]
}
}

I have search alot but the date filter is not working. Kindly check and thank you in advance

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.