We are reading the data from csv file and storing it on elasticsearch. Below is the filter used for date
date {
match => [ "extractTimestamp", "ISO8601"]
target => "extractTimestamp"
tag_on_failure => ["extractDatetimefailure"]
}
extractTimestamp- 2024-05-27T18:46:49.089Z
Please refer the file data
2024-05-27T18:46:49.089Z TEST1 PL 83 202405120150003821A1 2024-05-14T07:21:00.000Z 399.00 Closed TEST 50 12345678
2024-05-27T18:46:49.089Z TEST2 PL 83 202405120150003821A1 2024-05-14T07:21:00.000Z 399.00 Closed TEST1 50 12345678
The issue is when first line inserts it throws dateparse exception. For rest of the logs there is no exception.
On daily basis for the first line log it is failing with dateparse.
Could you please help us in understanding the issue?