Table of Contents

Class KernelHealthStatus

Namespace
DotCompute.Backends.CUDA.RingKernels.Resilience
Assembly
DotCompute.Backends.CUDA.dll

Current health status of a kernel.

public sealed class KernelHealthStatus
Inheritance
KernelHealthStatus
Inherited Members

Properties

ErrorCode

Gets or sets any error code from the kernel.

public int ErrorCode { get; set; }

Property Value

int

ErrorMessage

Gets or sets the error message if any.

public string? ErrorMessage { get; set; }

Property Value

string

IsRunning

Gets or sets whether the kernel is currently running.

public bool IsRunning { get; set; }

Property Value

bool

LastHeartbeatTime

Gets or sets the last heartbeat time from the kernel.

public DateTime? LastHeartbeatTime { get; set; }

Property Value

DateTime?

MessagesProcessed

Gets or sets the number of messages processed.

public long MessagesProcessed { get; set; }

Property Value

long