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
ComponentstringStatusHealthStatusTimestampDateTimeDetailsstring
Properties
Component
public string Component { get; init; }
Property Value
Details
public string Details { get; init; }
Property Value
Status
public HealthStatus Status { get; init; }
Property Value
Timestamp
public DateTime Timestamp { get; init; }