Constant DOTNET_GC_LAST_COLLECTION_MEMORY_COMMITTED_SIZE
pub const DOTNET_GC_LAST_COLLECTION_MEMORY_COMMITTED_SIZE: &'static str;
Expand description
§Description
The amount of committed virtual memory in use by the .NET GC, as observed during the latest garbage collection.
§Notes
Meter name: System.Runtime
; Added in: .NET 9.0.
This metric reports the same values as calling GC.GetGCMemoryInfo().TotalCommittedBytes
. Committed virtual memory may be larger than the heap size because it includes both memory for storing existing objects (the heap size) and some extra memory that is ready to handle newly allocated objects in the future
§Metadata
Instrument: | updowncounter |
Unit: | By |
Status: | Experimental |