How to convert multiple time fields into Logstash timestamp format

I have two different date fields per entry. How do I translate both fields into Logstash' timestamp format.

Right now, only one of the time fields is going to "@timestamp"

Here are the date parts of the config file:

date {
match => [ "date1", "MM/dd/YYYY HH:mm" ]

}
date {
match => [ "date2", "MM/dd/YYYY HH:mm" ]

}

Apologies, just found the solution to this...

using target.

eg.

date {
match => [ "date1", "MM/dd/YYYY HH:mm" ]
target => "date1"
}