<PackageReference Include="Relativity.Server.Telemetry.APM.SDK" Version="5000.0.3" />

HealthCheckResult

The result data of a health check.
public HealthCheckException Exception { get; set; }

A shortened exception.

public bool IsHealthy { get; set; }

Indicates if the result of the check is indeed healthy or not.

public string Message { get; set; }

Message of the result.

Initializes a new instance of the HealthCheckResult class.

public HealthCheckResult(Metadata metaData)

Initializes a new instance of the HealthCheckResult class.

public HealthCheckResult(Metadata metaData, bool isHealthy, string message = null, HealthCheckException exception = null)

Initializes a new instance of the HealthCheckResult class.

public HealthCheckResult(Metadata metaData, string message)

Initializes a new instance of the HealthCheckResult class.

public HealthCheckResult(Metadata metaData, string message, HealthCheckException exception)

Initializes a new instance of the HealthCheckResult class.