Open jasnell opened 6 years ago
Currently the v8 trace events format uses a root object with a traceEvents property whose value is an array... e.g.
traceEvents
{ "traceEvents": [ { "pid": "..." }, { "pid": "..." } ] }
While this is ok for relatively simple traces, when the trace file becomes rather large, it becomes more difficult to work with the json object.
It would be helpful from An-Ability-To-Process-Events-As-A-Stream point of view to support new-line delimited JSON as an alternative.
e.g.
{ "pid": "..." } { "pid": "..." }
Currently the v8 trace events format uses a root object with a
traceEvents
property whose value is an array... e.g.While this is ok for relatively simple traces, when the trace file becomes rather large, it becomes more difficult to work with the json object.
It would be helpful from An-Ability-To-Process-Events-As-A-Stream point of view to support new-line delimited JSON as an alternative.
e.g.