Hi,
can someone provide the difference between Heap size vs Bytes in all heaps for .NET Measure.
As per my understanding Bytes in all heaps is Gen 1+Gen 2+Large object heap.
Thanks
Solved! Go to Solution.
Hi @Tarun A.,
your're right, Bytes in all heaps is the sum of Gen 1 Heap size + Gen 2 Heap Size and the Large Object Heap Size. These values are collected from the corresponding performance counters. The documentation for these counters can be found in the official microsoft documentation.
Regards,
Michael
Featured Posts