The most obvious thing would be to use transaction to group the events by threadId. But that would mean "squishing" togethet the eventType and data values so you'd have to do some clever joining/separating fields. Feasible but not very pretty. You could do the same but firstly rename fields conditionally so that you end up with properly uniquely named fields per threadId. Then you could either do the transaction command or stats values (stats is usually a better approach) by threadId. You can also use xyseries to "unpack" the separate fields into a table.
... View more