Table of Contents

Class HealthCheckResult

Namespace
DotCompute.Runtime.Services
Assembly
DotCompute.Runtime.dll

A class that represents health check result.

public record HealthCheckResult : IEquatable<HealthCheckResult>
Inheritance
HealthCheckResult
Implements
Inherited Members

Constructors

HealthCheckResult(string, HealthStatus, DateTime, string)

A class that represents health check result.

public HealthCheckResult(string Component, HealthStatus Status, DateTime Timestamp, string Details)

Parameters

Component string
Status HealthStatus
Timestamp DateTime
Details string

Properties

Component

public string Component { get; init; }

Property Value

string

Details

public string Details { get; init; }

Property Value

string

Status

public HealthStatus Status { get; init; }

Property Value

HealthStatus

Timestamp

public DateTime Timestamp { get; init; }

Property Value

DateTime