Is there a way to get 'Size' column of "Total Commit-Process View" (Which is shown in WPA) using "Microsoft.Windows.EventTracing".
I am generated ETL file(using WPR), and in the "Size' column of the 'Total Commit(Process View), i get Size value in the WPA.
I would like to get the same result using "Microsoft.Windows.EventTracing" c# code.
Can someone through some pointers.
Thanks Santhi
Here's a code example that will print the total commit for each process:
Note that these numbers will be slightly different from what WPA shows by default. The "Size" column of this table has a default aggregation of "Peak Outstanding," and the above code would be similar to if you changed the aggregation to "Sum." To get different aggregations, change the
processCommitSizeGroup.Sum
call to a function that performs the correct aggregation.