How can I export specific lines with "xcrun xctrace export --xpath"?
For now it's possible to export the whole table with
Taking into account, that Xpath is used, I would expect possibility to filter rows with some specific attributes, like process ID:
If this is impossible now, I will appreciate adding this feature in the future!
For now it's possible to export the whole table with
Code Block xcrun xctrace export --input my.trace --xpath '/trace-toc/run[@number="1"]/data/table[@schema="activity-monitor-process-live"]
Taking into account, that Xpath is used, I would expect possibility to filter rows with some specific attributes, like process ID:
Code Block .../table[@schema="activity-monitor-process-live"]/row[./process[@ref=123]]
If this is impossible now, I will appreciate adding this feature in the future!