Class HealthCheckResult
- Namespace
- Orleans.GpuBridge.Abstractions.Providers
- Assembly
- Orleans.GpuBridge.Abstractions.dll
Health check result for a backend provider
public sealed record HealthCheckResult : IEquatable<HealthCheckResult>
- Inheritance
-
HealthCheckResult
- Implements
- Inherited Members
Constructors
HealthCheckResult(bool, string?, IReadOnlyDictionary<string, object>?)
Health check result for a backend provider
public HealthCheckResult(bool IsHealthy, string? Message = null, IReadOnlyDictionary<string, object>? Diagnostics = null)
Parameters
IsHealthyboolMessagestringDiagnosticsIReadOnlyDictionary<string, object>
Properties
Diagnostics
public IReadOnlyDictionary<string, object>? Diagnostics { get; init; }
Property Value
IsHealthy
public bool IsHealthy { get; init; }
Property Value
Message
public string? Message { get; init; }