I am trying to group a set of results by a field. I'd like to do this using a table, but don't think its possible. Similar questions use stat, but whenever a field wraps onto the next line, the fields of a single event no longer line up in one row.
My data:
jobid, created, msg, filename
Currently, I have jobid>300 | sort created | stats latest(created) as last list(created) list(msg) list(filename) by jobid | sort last | fields - last
But when msg wraps onto the next line, the msg's no longer line up with the correct timestamp.
ex.
... View more