nestjs-temporal-core
    Preparing search index...

    Interface SystemStatus

    Comprehensive system status including all Temporal components. Used for health monitoring and system diagnostics.

    const status = await temporalService.getSystemStatus();
    if (!status.client.healthy || !status.worker.available) {
    console.warn('Temporal system is not fully operational');
    }
    interface SystemStatus {
        client: { available: boolean; healthy: boolean };
        discovery: DiscoveryStats;
        worker: { available: boolean; health?: string; status?: WorkerStatus };
    }
    Index

    Properties

    client: { available: boolean; healthy: boolean }
    discovery: DiscoveryStats
    worker: { available: boolean; health?: string; status?: WorkerStatus }