You can get useful GC performance information from PerfMon - not as detailed as you want.
There are a lot of memory performance. NET Counters, and this should give you some guidelines for interpreting counter data and how to relate them. This assumes that you have a basic understanding of GC.
If you have one of the premium versions of Visual Studio that includes Performance / Profiling Tools , you can get more information about individual object distributions and lifetimes. In particular, this may be in the area that you wish:
The garbage collector restores memory by freeing up a whole generation of objects. For objects that are profiled, the application is created, an object. The "Lifetime" view displays the number and size of objects and the generation when they return.
If you feel very adventurous, you can perform custom profiling using the profiling API .
Steve townsend
source share