Woah, that data is wonky. I'd probably do something like this: | makeresults | eval _raw="message: Dataframe row : {\"_c0\":{\"0\":\"{\",\"1\":\" \\\"compaction_table\\\": [\",\"2\":\" \\\"md_proc_control_v2\\\"\",\"3\":\" \\\"md_source_control\\\"\",\"4\":\" ]\",\"5\":\" \\\"Timestamp\\\": \\\"2023\/06\/26 12:05:43\\\"\",\"6\":\" \\\"compaction_status\\\": \\\"Successful\\\"\",\"7\":\"}\"}}" | rex field=_raw mode=sed "s/\s|{|}|\"|\\\//g" | eval parts=split(_raw, ",") | fields parts That gives me something a bit more sane to deal with: I could deal with that then. Just trying to help you get there. 🙂
... View more