vigiles API reference
    Preparing search index...

    Interface BaselineDiff

    interface BaselineDiff {
        entries: readonly MetricDiff[];
        improvements: readonly MetricDiff[];
        passed: boolean;
        regressions: readonly MetricDiff[];
    }
    Index

    Properties

    entries: readonly MetricDiff[]

    Every arm×metric present in BOTH the baseline and the current run.

    improvements: readonly MetricDiff[]

    The subset that improved (significant move in the good direction).

    passed: boolean

    True when there are no regressions — the gate.

    regressions: readonly MetricDiff[]

    The subset that regressed (significant move in the bad direction).