Running an analysis
The Run analysis button in the top bar triggers a fresh AI analysis pass over your workspace’s open issues. Use it after ingesting a batch of new events or when you want an updated risk snapshot.KPI tiles
Six metric tiles appear across the top of the dashboard. Each tile shows the current value, the change from the previous window, a trend direction, and a mini sparkline.| Tile | What it measures |
|---|---|
| Open issues | Issues not yet in a terminal status (resolved or won't fix) |
| Active patterns | Patterns in active or emerging status |
| High-probability predictions | Predictions with probability ≥ 80 % |
| Avg risk score | Mean risk score across active patterns |
| MTTR | Median time to resolve an issue, in days |
| Loops prevented | Patterns moved to resolved in the current window |
GET /v1/dashboard/kpis?window=30d. See the API reference for the full response schema.
Interactive chart
Below the tiles, an interactive time-series chart plots one metric over the selected window. Click a point to see its exact value and date in a tooltip. Use the arrow keys when the chart is focused to step through data points. Available metrics include issue volume, pattern risk trend, and resolution rate. The chart data comes fromGET /v1/dashboard/charts/{metric}.
Risk heatmap
The risk heatmap shows issue volume by day of week × hour of day (UTC). Darker cells indicate higher issue density. Use it to spot when your systems are most prone to failures — for example, every Monday morning after a weekend deploy. The backing endpoint isGET /v1/dashboard/risk-heatmap.
Pattern cluster graph
The cluster graph visualises how patterns relate to each other. Each node is a pattern; node size reflects its risk score; edges connect patterns that share contributing factors or issue membership. Clusters — groups of tightly related patterns — are shown as color-coded regions. The graph data comes fromGET /v1/dashboard/cluster-graph. You can also retrieve the full cluster list via GET /v1/clusters.
Predictions — next incidents
A panel on the lower half of the dashboard surfaces the top upcoming incidents predicted by the AI. Each row shows the pattern name, the probability score, and the prediction window. The amber pill on the panel header counts how many predictions are currently active. Click Apply playbook on a high-confidence prediction to navigate to its recommendation and act before the incident occurs.Live activity feed
The Live activity panel streams workspace events in real time. Each row shows the timestamp and a human-readable description of what happened — new issues ingested, analyses completed, patterns matched, recommendations generated. Events are fetched fromGET /v1/dashboard/activity and filter by type prefix (for example, issue. or prediction.).
Model accuracy
The Model accuracy card shows how well the prediction engine is performing:| Metric | Meaning |
|---|---|
| Precision | Share of predicted incidents that actually occurred |
| Recall | Share of actual incidents the model predicted |
| Brier score | Probability calibration error (lower is better; 0 = perfect) |
| Lead time | Average days of advance warning the model provides |
GET /v1/dashboard/model-accuracy and are re-evaluated regularly.
Mobile view
On screens 640 px wide and below, the dashboard switches to a condensed layout. The top bar shows your organisation name and a notification bell. Three compact KPI tiles (Active, P1 loops, Precision) appear below. The most critical open prediction is highlighted in an alert card with quick-action buttons.Related pages
Issues
Drill into the issues behind your KPI tiles.
Patterns
Explore the recurring patterns driving your risk score.
Predictions
Review all active predictions and model accuracy details.
Recommendations
Act on the AI’s suggested fixes.