eG Monitoring
 

Measures reported by AspNetClrGcTest

The AspNetClrGcTest monitors the memory allocation activity of the ASP .NET server, in terms of heaps when objects are created and managed. The measures made by this test are as follows:

Measurement Description Measurement Unit Interpretation
Heap_mem_usage The number of bytes committed by managed objects. This is the sum of the large object heap and the generation 0, 1, and 2 heaps. MB  
Gen_0_collections The rate at which the generation 0 objects (youngest; most recently allocated) are garbage collected (Gen 0 GC) since the start of the application. Collections/sec  
Gen_1_collections The rate at which the generation 1 objects have been garbage collected since the start of the application. Objects that survive are promoted to generation 2. Collections/sec  
Gen_2_collections The rate at which generation 2 objects have been garbage collected since the start of the application. Collections/sec Generation 2 is the highest, thus objects that survive collection remain in generation 2. Gen 2 collections can be very expensive, especially if the size of the Gen 2 heap is huge.
Time_in_gc % Time in GC is the percentage of elapsed time that was spent in performing a garbage collection (GC) since the last GC cycle. Percent This measure is usually an indicator of the work done by the Garbage Collector on behalf of the application to collect and conserve memory. This measure is updated only at the end of every GC and the measure reflects the last observed value; its not an average.