sorokeep
    Preparing search index...

    Interface MonitorCycleResult

    interface MonitorCycleResult {
        alertsResolved: number;
        contractsChecked: number;
        cycleFinishedAt: Date;
        cycleStartedAt: Date;
        entriesUpdated: number;
        errors: string[];
        extensionErrors: string[];
        extensionsTriggered: number;
        projectedCrossings: ProjectedCrossing[];
        thresholdsCrossed: number;
    }
    Index
    alertsResolved: number

    Number of previously-open alerts that were resolved because TTL recovered.

    contractsChecked: number

    Number of contracts belonging to the target network that were processed.

    cycleFinishedAt: Date

    Timestamp when this cycle completed.

    cycleStartedAt: Date

    Timestamp when this cycle started.

    entriesUpdated: number

    Number of individual ledger entries whose TTL was refreshed in the DB.

    errors: string[]

    Per-contract error messages for any contract that failed during the cycle.

    extensionErrors: string[]

    Non-fatal errors from the auto-extension phase.

    extensionsTriggered: number

    Total ledger entries extended by the auto-extension phase this cycle.

    projectedCrossings: ProjectedCrossing[]

    Projected TTL crossing ledgers for entries with enough historical samples.

    thresholdsCrossed: number

    Number of alert threshold crossings detected (new, not previously fired).