I would like to export the time series of a single process, as the one highlighted in blue.
I tried to export the tables following the procedure proposed by Bruce Dawson.
Is-it possible to export the time-series directly from WPA? Shall I use C# and the nuget package as suggested by Bruce Dawson?
WPAExporter is a solid tool and the first answer has some good links. I blogged about my experience with it here: https://randomascii.wordpress.com/2013/11/04/exporting-arbitrary-data-from-xperf-etl-files/
In theory using WPAExporter is simpler than writing .Net code to export data, but in practice it can be just as finicky, and I have no love of .csv files. So, my normal export methods these days are either copy/paste (simple, gives you tab-separated data) or Trace Processor (https://randomascii.wordpress.com/2020/01/05/bulk-etw-trace-analysis-in-c/). Trace Processor is more work but if I'm going to be analyzing multiple traces or I want to generate some stats in addition to exporting then it is clearly superior.