nestjs-temporal-core
    Preparing search index...

    Interface ServiceHealthStatus

    Service health status (enhanced)

    interface ServiceHealthStatus {
        details?: Record<string, unknown>;
        isInitialized: boolean;
        lastError?: string;
        status: "healthy" | "unhealthy" | "degraded";
        uptime?: number;
    }
    Index

    Properties

    details?: Record<string, unknown>
    isInitialized: boolean
    lastError?: string
    status: "healthy" | "unhealthy" | "degraded"
    uptime?: number