Class MemoryPoolHealth
Memory pool health status information.
public sealed class MemoryPoolHealth
- Inheritance
-
MemoryPoolHealth
- Inherited Members
Properties
Message
Gets a human-readable message describing the health status.
public string Message { get; init; }
Property Value
PoolCount
Gets the number of active memory pools.
public int PoolCount { get; init; }
Property Value
Status
Gets the current health status of the memory pool.
public HealthStatus Status { get; init; }
Property Value
TotalLimitBytes
Gets the total memory limit in bytes.
public long TotalLimitBytes { get; init; }
Property Value
TotalUsageBytes
Gets the total memory usage in bytes across all pools.
public long TotalUsageBytes { get; init; }
Property Value
UtilizationPercent
Gets the memory utilization as a percentage (0-100).
public double UtilizationPercent { get; init; }