Table of Contents

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

bool

LeakDescriptions

Gets descriptions of detected leaks.

public IReadOnlyList<string>? LeakDescriptions { get; init; }

Property Value

IReadOnlyList<string>

LeakedResourceCount

Gets the number of potentially leaked resources.

public int LeakedResourceCount { get; init; }

Property Value

int

Timestamp

Gets the timestamp of the detection.

public DateTimeOffset Timestamp { get; init; }

Property Value

DateTimeOffset

TotalAllocated

Gets the total allocated resources.

public int TotalAllocated { get; init; }

Property Value

int

TotalReleased

Gets the total released resources.

public int TotalReleased { get; init; }

Property Value

int