Member Junction
    Preparing search index...

    Health check result for a single extension. Returned by BaseServerExtension.HealthCheck() and aggregated by ServerExtensionLoader.

    interface ExtensionHealthResult {
        Details?: Record<string, unknown>;
        Healthy: boolean;
        Name: string;
    }
    Index

    Properties

    Properties

    Details?: Record<string, unknown>

    Optional details about the health status (uptime, last error, queue depth, etc.).

    Healthy: boolean

    Whether the extension is healthy and able to process requests.

    Name: string

    Human-readable name of the extension (typically the DriverClass).