% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it. ```esql ROW a = "2023-01-23T12:15:00.000Z - some text - 127.0.0.1" | DISSECT a """%{date} - %{msg} - %{ip}""" | KEEP date, msg, ip | EVAL date = TO_DATETIME(date) ``` | msg:keyword | ip:keyword | date:date | | --- | --- | --- | | some text | 127.0.0.1 | 2023-01-23T12:15:00.000Z |