Skip to content

Commit 9e6f0b7

Browse files
feat(dashboards): Registers web vitals dashboard (#104577)
Registers Web Vitals as prebuilt dashboard
1 parent 5029a96 commit 9e6f0b7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/sentry/dashboards/endpoints/organization_dashboards.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ class PrebuiltDashboardId(IntEnum):
6565
FRONTEND_SESSION_HEALTH = 1
6666
BACKEND_QUERIES = 2
6767
BACKEND_QUERIES_SUMMARY = 3
68+
WEB_VITALS = 6
69+
WEB_VITALS_SUMMARY = 7
6870

6971

7072
class PrebuiltDashboard(TypedDict):
@@ -94,6 +96,10 @@ class PrebuiltDashboard(TypedDict):
9496
"prebuilt_id": PrebuiltDashboardId.BACKEND_QUERIES_SUMMARY,
9597
"title": "Query Details",
9698
},
99+
{
100+
"prebuilt_id": PrebuiltDashboardId.WEB_VITALS,
101+
"title": "Web Vitals",
102+
},
97103
]
98104

99105

0 commit comments

Comments
 (0)