Hi,
I am creating a ingest pipeline to ingest application log to elastic and I have the log line format as follow:
[2023-05-03 16:12:19,420] - [Application Name] - [INFO] - Log details goes here
Based on this format I created an ingest pipeline with grok processor:
\[%{TIMESTAMP_ISO8601:log.timestamp}\] - \[%{DATA:log.appName}\] - \[%{DATA:log.level}\] %{GREEDYDATA:log.message}.
It's working fine. However, I wanted to convert the field log.timestamp (which is a text field) to date, and the date processor shows "error"