Logstash import date

hello, i want to pass a field ("datetime") as date with this format 1/19/21 12:00 so i add in the conf file the following :


date {						 
					match => ["datetime", "MM/dd/yy HH:mm"]  
					
					target => "Dateread"
					
				}

but elastic search cant understand the field Dateread as date, what can i do?

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