I have multiple date field in RDMS data. I have downloaded it in csv format for every month. I have converted string field into date using mutate. When I try it create visualization in kibana, the date field only shows the data of jan 2019.
I have data from jan 1 2019 to dec 25 2019 in csv in multiple files.
Total records is 24 lakhs
In kibana, all datas (24 lakhs) are shown in jan month only.
string is 12-Dec-19
date {
match => ["ENTER_DATE", "DD-MMM-YY"]
target => "ENTER_DATE"
}
date
{
match => ["UPDATE_TIME", "DD-MMM-YY"]
target => "UPDATE_TIME"
}
date
{
match => ["SEND_DATE", "DD-MMM-YY"]
target => "SEND_DATE"
}
String is converted to date in kibana successfully but the data of dec month is override with jan month.