Hi, I'm trying to create some test data which contains some JSON embedded in it. I'm then trying to extract the JSON and display it, which is working with the following search string: | makeresults | eval _raw="018-07-13 05:48:30.343 PDT [pool-3-thread-3] INFO STATUS - {\"well_formed_json\": \"yes\"}"
| rex field=_raw "INFO STATUS - (?<json>.*)"| rename json as _raw However the results are displayed in a table. I'd like the results to be displayed in a list view with with color-coding, nested levels, etc. Is this possible?
... View more