Skip to content

Commit 24966db

Browse files
betegonclaude
andcommitted
docs(dashboard): list all 14 display types in agent guidance table
Previously only 5 common types were in the table with the rest mentioned in text. Now all display types are listed with their sizes and categories. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 748081f commit 24966db

2 files changed

Lines changed: 40 additions & 30 deletions

File tree

docs/src/content/docs/agent-guidance.md

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -106,21 +106,26 @@ sentry api /api/0/organizations/my-org/projects/ --method POST --data '{"name":"
106106

107107
Sentry dashboards use a **6-column grid**. When adding widgets, aim to fill complete rows (widths should sum to 6).
108108

109-
Default widget sizes by display type:
110-
111-
| Display Type | Width | Height | Notes |
112-
|---|---|---|---|
113-
| `big_number` | 2 | 1 | Compact KPI — place 3 per row (2+2+2=6) |
114-
| `line` | 3 | 2 | Half-width chart — place 2 per row (3+3=6) |
115-
| `area` | 3 | 2 | Half-width chart — place 2 per row |
116-
| `bar` | 3 | 2 | Half-width chart — place 2 per row |
117-
| `table` | 6 | 2 | Full-width — always takes its own row |
118-
119-
Common display types for general dashboards: `big_number`, `line`, `area`, `bar`, `table`.
120-
121-
Specialized types (only use when specifically requested): `stacked_area`, `top_n`, `categorical_bar`, `text`.
122-
123-
Internal types (avoid unless user explicitly asks): `details`, `wheel`, `rage_and_dead_clicks`, `server_tree`, `agents_traces_table`.
109+
Display types with default sizes:
110+
111+
| Display Type | Width | Height | Category | Notes |
112+
|---|---|---|---|---|
113+
| `big_number` | 2 | 1 | common | Compact KPI — place 3 per row (2+2+2=6) |
114+
| `line` | 3 | 2 | common | Half-width chart — place 2 per row (3+3=6) |
115+
| `area` | 3 | 2 | common | Half-width chart — place 2 per row |
116+
| `bar` | 3 | 2 | common | Half-width chart — place 2 per row |
117+
| `table` | 6 | 2 | common | Full-width — always takes its own row |
118+
| `stacked_area` | 3 | 2 | specialized | Stacked area chart |
119+
| `top_n` | 3 | 2 | specialized | Top N ranked list |
120+
| `categorical_bar` | 3 | 2 | specialized | Categorical bar chart |
121+
| `text` | 3 | 2 | specialized | Static text/markdown widget |
122+
| `details` | 3 | 2 | internal | Detail view |
123+
| `wheel` | 3 | 2 | internal | Pie/wheel chart |
124+
| `rage_and_dead_clicks` | 3 | 2 | internal | Rage/dead click visualization |
125+
| `server_tree` | 3 | 2 | internal | Hierarchical tree display |
126+
| `agents_traces_table` | 3 | 2 | internal | Agents traces table |
127+
128+
Use **common** types for general dashboards. Use **specialized** only when specifically requested. Avoid **internal** types unless the user explicitly asks.
124129

125130
Available datasets: `spans` (default, covers most use cases), `discover`, `issue`, `error-events`, `transaction-like`, `metrics`, `logs`.
126131

plugins/sentry-cli/skills/sentry-cli/SKILL.md

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -116,21 +116,26 @@ sentry api /api/0/organizations/my-org/projects/ --method POST --data '{"name":"
116116

117117
Sentry dashboards use a **6-column grid**. When adding widgets, aim to fill complete rows (widths should sum to 6).
118118

119-
Default widget sizes by display type:
120-
121-
| Display Type | Width | Height | Notes |
122-
|---|---|---|---|
123-
| `big_number` | 2 | 1 | Compact KPI — place 3 per row (2+2+2=6) |
124-
| `line` | 3 | 2 | Half-width chart — place 2 per row (3+3=6) |
125-
| `area` | 3 | 2 | Half-width chart — place 2 per row |
126-
| `bar` | 3 | 2 | Half-width chart — place 2 per row |
127-
| `table` | 6 | 2 | Full-width — always takes its own row |
128-
129-
Common display types for general dashboards: `big_number`, `line`, `area`, `bar`, `table`.
130-
131-
Specialized types (only use when specifically requested): `stacked_area`, `top_n`, `categorical_bar`, `text`.
132-
133-
Internal types (avoid unless user explicitly asks): `details`, `wheel`, `rage_and_dead_clicks`, `server_tree`, `agents_traces_table`.
119+
Display types with default sizes:
120+
121+
| Display Type | Width | Height | Category | Notes |
122+
|---|---|---|---|---|
123+
| `big_number` | 2 | 1 | common | Compact KPI — place 3 per row (2+2+2=6) |
124+
| `line` | 3 | 2 | common | Half-width chart — place 2 per row (3+3=6) |
125+
| `area` | 3 | 2 | common | Half-width chart — place 2 per row |
126+
| `bar` | 3 | 2 | common | Half-width chart — place 2 per row |
127+
| `table` | 6 | 2 | common | Full-width — always takes its own row |
128+
| `stacked_area` | 3 | 2 | specialized | Stacked area chart |
129+
| `top_n` | 3 | 2 | specialized | Top N ranked list |
130+
| `categorical_bar` | 3 | 2 | specialized | Categorical bar chart |
131+
| `text` | 3 | 2 | specialized | Static text/markdown widget |
132+
| `details` | 3 | 2 | internal | Detail view |
133+
| `wheel` | 3 | 2 | internal | Pie/wheel chart |
134+
| `rage_and_dead_clicks` | 3 | 2 | internal | Rage/dead click visualization |
135+
| `server_tree` | 3 | 2 | internal | Hierarchical tree display |
136+
| `agents_traces_table` | 3 | 2 | internal | Agents traces table |
137+
138+
Use **common** types for general dashboards. Use **specialized** only when specifically requested. Avoid **internal** types unless the user explicitly asks.
134139

135140
Available datasets: `spans` (default, covers most use cases), `discover`, `issue`, `error-events`, `transaction-like`, `metrics`, `logs`.
136141

0 commit comments

Comments
 (0)