Search Results for

    Show / Hide Table of Contents

    Health checks

    Thresh.HealthChecks integrates with ASP.NET Core health checks for operational visibility.

    Register

    services
        .AddThresh()
        .AddHealthChecks()
        .AddCheck<Thresh.HealthChecks.LcuHealthCheck>("lcu");
    

    Usage guidance

    • Use readiness checks to indicate whether LCU communication is currently usable.
    • Keep liveness checks lightweight and process-focused.
    • Pair health checks with logs and metrics to avoid ambiguous status interpretation.
    • Edit this page
    In this article
    Back to top Generated by DocFX