@storehouse/core - v2.1.0
    Preparing search index...

    Interface HealthCheckResult

    Result returned by health check operations

    interface HealthCheckResult {
        details?: Record<string, unknown>;
        healthy: boolean;
        latency?: number;
        message?: string;
        timestamp: number;
    }
    Index

    Properties

    details?: Record<string, unknown>

    Additional diagnostic information

    healthy: boolean

    Whether the connection is healthy

    latency?: number

    Response time in milliseconds

    message?: string

    Human-readable status message

    timestamp: number

    Unix timestamp when the check was performed