Skip to content

Commit 6af596e

Browse files
authored
feat(dashboards): Add dashboard link to Network Requests by Time Spent widget (#107789)
## Summary - Adds a `linkedDashboards` configuration to the "Network Requests by Time Spent" widget in the Frontend Overview prebuilt dashboard - Links the `span.domain` column to the frontend overview static dashboard (ID 5), enabling users to drill down from the widget into the full dashboard view ## Test plan - [ ] Verify the Network Requests by Time Spent widget renders correctly - [ ] Verify clicking on a span domain value navigates to the linked dashboard
1 parent abcaf47 commit 6af596e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

static/app/views/dashboards/utils/prebuiltConfigs/frontendOverview/frontendOverview.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ const SECOND_ROW_WIDGETS: Widget[] = spaceWidgetsEquallyOnRow(
194194
aggregates: ['p75(span.duration)'],
195195
columns: [SpanFields.SPAN_DOMAIN],
196196
orderby: `-sum(span.duration)`,
197+
linkedDashboards: [
198+
{dashboardId: '-1', field: SpanFields.SPAN_DOMAIN, staticDashboardId: 5},
199+
],
197200
},
198201
],
199202
},

0 commit comments

Comments
 (0)