Dashboard
The Overview dashboard is your CI health command center. It aggregates data from all your repositories and surfaces the most important metrics and insights.
KPI Strip
Six key metrics give you an at-a-glance view of CI health:
Total Runs
The number of workflow runs in the selected time period. This is counted by unique run_id, so re-runs of the same workflow count separately.
Success Rate
Percentage of runs that completed with conclusion: success.
Target: 95%+ for mature CI systems.
Failure Rate
Percentage of runs that completed with conclusion: failure. This excludes cancelled runs, which are tracked separately.
Watch out: Failure rates above 10% often indicate systemic issues rather than legitimate code failures.
Re-run Rate
Percentage of runs where attempt > 1. High re-run rates are the clearest signal of flaky tests or infrastructure issues.
Target: Below 5%. Above 10% requires investigation.
Duration p50 (Median)
Half of all workflow runs complete faster than this time. This is your "typical" build time.
Duration p95 (95th Percentile)
95% of runs complete faster than this time. This catches slow outliers that p50 might hide.
Tip: A large gap between p50 and p95 suggests inconsistent performance — some runs are much slower than others.
Trend Charts
Duration Over Time
Shows p50 and p95 duration trends over the last 30 days. Look for:
- Gradual increases (creeping slowdown)
- Step changes (something was added/changed)
- Spikes (intermittent infrastructure issues)
Re-run Rate Over Time
Daily re-run percentage. Useful for spotting:
- Flaky tests introduced by specific commits
- Infrastructure issues on specific days
- Seasonal patterns (e.g., end-of-sprint rushes)
Run Outcomes
Stacked bar chart showing success/failure/cancelled runs by day. Helps visualize:
- Overall volume patterns
- Failure clustering
- Impact of deployments or releases
Workflow Rankings
Three tabs show your workflows ranked by different criteria:
Most Expensive
Workflows consuming the most total compute time (sum of all run durations). These are your best optimization targets for reducing CI costs.
Most Re-runs
Workflows with the highest re-run rates. These likely have flaky tests or unreliable dependencies.
Most Failures
Workflows with the highest failure rates. May indicate broken tests, misconfigured workflows, or legitimate but frequent failures.
Findings Preview
Shows the top 5 automatically detected issues. Each finding includes:
- Severity badge (High/Medium/Low)
- Brief description
- Affected workflow
- Estimated impact
Click "View all detections" to see the full list with filtering options.
Filtering
Use the filter dropdown to focus on:
- Specific repositories
- All repos in an organization
- Pinned repositories
- Saved repository groups
Filters apply to all dashboard components and are preserved in the URL for sharing.