nestjs-temporal-core
    Preparing search index...

    Interface ScheduleServiceStats

    Aggregate statistics about all managed schedules.

    const stats = scheduleService.getScheduleStats();
    console.log(`Active schedules: ${stats.active}/${stats.total}`);
    if (stats.errors > 0) {
    console.warn(`${stats.errors} schedules have errors`);
    }
    interface ScheduleServiceStats {
        active: number;
        errors: number;
        inactive: number;
        lastUpdated?: Date;
        total: number;
    }
    Index

    Properties

    active: number
    errors: number
    inactive: number
    lastUpdated?: Date
    total: number