Logstash Config error

Hi team,
I am new to ELK and eploring it.
But I am getting the below error, any idea.
I've pasted the conf and csv data.

Kidn regards
csr

Conf file

input {
file {
path => "/data/uploads/stage/pay.csv"
start_position => "beginning"
}
}
filter {
csv {
separator => ","
columns => [ "Date","AvgIOPs","MaxIOPs","TheoLimit","PerWrites" ]
}
date {
match ==> [ "Date", "YYYY-MM-dd HH:mm:ss" ]
remove_field ==> [ "Date" ]
}
mutate {convert => ["AvgIOPs", "float"]}
mutate {convert => ["MaxIOPs", "float"]}
mutate {convert => ["TheoLimit", "float"]}
mutate {convert => ["PerWrites", "float"]}
}
output {
elasticsearch {
action => "index"
host => "localhost"
index => "performance"
workers => 1
}
stdout {}
}

csv.data

Date, AvgIOPs, MaxIOPs, TheoLimit, PerWrites
2016-08-02 00:00:00, 974.83, 5187.45, 26481, 97.17
2016-08-02 00:05:00, 2288.60, 7945.80, 44247, 44.77
2016-08-02 00:10:00, 1037.67, 5743.83, 26685, 96.17
2016-08-02 00:15:00, 1720.19, 7205.17, 26213, 98.50
2016-08-02 00:20:00, 1598.35, 6344.72, 26341, 97.86

/opt/logstash/bin/logstash -f l2.conf --configtest
The given configuration is invalid. Reason: Expected one of #, => at line 13, column 8 (byte 202) after filter {
csv {
separator => ","
columns => [ "Date","AvgIOPs","MaxIOPs","TheoLimit","PerWrites" ]
}
date {
match {:level=>:fatal}

Any idea, where am I getting wrong...
Kidn regards
csr

You only need =>

Warkolm,
Yes, you hit it, it is fine now.
Thanks, highly appreciated :smile:

thanks & regards
csr