Used the following command `rex "(?\d+)\[(?\-?\d+\.?\d+)\]"| table ...`, but the entire string gets extracted into a single column.
Raw String in the Log:
Status{AdId='313131313', reason='ERROR_400', externalError='null'},Status{AdId='313131313', reason='ERROR_500', externalOfferId='null'}
Desired table
AdId reason externalError
313131313 ERROR_400 null
313131313 ERROR_500 null
↧