Hi all. I'm trying to tell Filebeat to use my timestamp, rather than creating one. I'm getting this error:
"error": "failed parsing time field _app.ACTUAL_TIME='2023-08-01T11:49:09.386Z'", "errorCauses": [{"error": "failed using layout [2023-08-01T11:23:28.710Z] cannot parse [-08-01T11:49:09.386Z] as [3]"}]}
Could anybody help?
This is my filebeat.yml fragment:
processors:
- timestamp:
field: _app.ACTUAL_TIME
layouts:
- '2023-08-01T11:49:09.323Z'
The layout is copied direct from the value of _app.ACTUAL_TIME.
Thanks!