Class ResourceLeakResult
- Namespace
- DotCompute.Abstractions.Health
- Assembly
- DotCompute.Abstractions.dll
Resource leak detection result.
public sealed class ResourceLeakResult
- Inheritance
-
ResourceLeakResult
- Inherited Members
Properties
HasPotentialLeaks
Gets whether potential leaks were detected.
public bool HasPotentialLeaks { get; init; }
Property Value
LeakDescriptions
Gets descriptions of detected leaks.
public IReadOnlyList<string>? LeakDescriptions { get; init; }
Property Value
LeakedResourceCount
Gets the number of potentially leaked resources.
public int LeakedResourceCount { get; init; }
Property Value
Timestamp
Gets the timestamp of the detection.
public DateTimeOffset Timestamp { get; init; }
Property Value
TotalAllocated
Gets the total allocated resources.
public int TotalAllocated { get; init; }
Property Value
TotalReleased
Gets the total released resources.
public int TotalReleased { get; init; }