European Parliament MCP Server API - v1.3.10
    Preparing search index...

    Observable status of the scheduler.

    interface LifecycleWarmupSchedulerStatus {
        failedAttempts: number;
        intervalMs: number;
        lastRefreshErrorAt: string | null;
        lastRefreshErrorMessage: string | null;
        lastSuccessAt: string | null;
        running: boolean;
        successfulAttempts: number;
        totalAttempts: number;
    }
    Index

    Properties

    failedAttempts: number

    Warmups that ended in a thrown error.

    intervalMs: number

    Effective interval (ms) used by the timer; reflects clamped env value.

    lastRefreshErrorAt: string | null

    ISO-8601 timestamp of the most recent failed warmup, or null when no warmup has ever failed.

    lastRefreshErrorMessage: string | null

    Sanitised error message from the most recent failure, or null when no warmup has failed.

    lastSuccessAt: string | null

    ISO-8601 timestamp of the most recent successful warmup, or null when no warmup has ever succeeded.

    running: boolean

    Whether the interval timer is currently scheduling refreshes.

    successfulAttempts: number

    Successful warmups (no error thrown by getLifecycleStatistics).

    totalAttempts: number

    Total number of warmup attempts that have completed since start().