Summary of runs for a pipeline instance.

interface RunSummary {
    duration?: any;
    noConfigRunsCount?: number;
    runSummaryByOutcome?: { [key: number]: number };
    runSummaryByState?: { [key: number]: number };
    totalRunsCount?: number;
}

Properties

duration?: any

Total time taken by runs with state completed and NeedInvestigation.

noConfigRunsCount?: number

NoConfig runs count.

runSummaryByOutcome?: { [key: number]: number }

Runs count by outcome for runs with state completed and NeedInvestigation runs.

runSummaryByState?: { [key: number]: number }

Runs count by state.

totalRunsCount?: number

Total runs count.