AutoBE
    Preparing search index...

    Interface IAutoBeDebugRuntimeRepairAttemptSummary

    Compact outcome for one Debug repair attempt.

    interface IAutoBeDebugRuntimeRepairAttemptSummary {
        afterFailed?: number;
        afterPassed?: number;
        afterTotal?: number;
        beforeFailed?: number;
        beforePassed?: number;
        beforeTotal?: number;
        diagnostics?: string[];
        endpoints: string[];
        phase?: number;
        result:
            | "runtime_setup_failed"
            | "non_improving_runtime"
            | "repeated_failure_signature"
            | "stagnated_runtime"
            | "regressed_runtime"
            | "no_successful_rewrite"
            | "applied";
        targetFailedAfter?: number;
        targetFailedBefore?: number;
    }
    Index

    Properties

    afterFailed?: number

    Runtime failure count after the candidate, when runtime was executed.

    afterPassed?: number

    Runtime pass count after the candidate, when runtime was executed.

    afterTotal?: number

    Runtime total count after the candidate, when runtime was executed.

    beforeFailed?: number

    Runtime failure count before the candidate, when runtime was executed.

    beforePassed?: number

    Runtime pass count before the candidate, when runtime was executed.

    beforeTotal?: number

    Runtime total count before the candidate, when runtime was executed.

    diagnostics?: string[]

    Compact diagnostic lines that explain this attempt.

    endpoints: string[]

    METHOD:/path identifiers targeted by the attempt.

    phase?: number

    Topological repair phase, when the endpoint was phase-grouped.

    result:
        | "runtime_setup_failed"
        | "non_improving_runtime"
        | "repeated_failure_signature"
        | "stagnated_runtime"
        | "regressed_runtime"
        | "no_successful_rewrite"
        | "applied"

    Machine-readable attempt result.

    targetFailedAfter?: number

    Target-cluster failure count after the candidate, when known.

    targetFailedBefore?: number

    Target-cluster failure count before the candidate, when known.