diff --git a/src/sentry/dashboards/endpoints/organization_dashboards.py b/src/sentry/dashboards/endpoints/organization_dashboards.py index 3cdca4a16982..b03a62f965f1 100644 --- a/src/sentry/dashboards/endpoints/organization_dashboards.py +++ b/src/sentry/dashboards/endpoints/organization_dashboards.py @@ -92,6 +92,7 @@ class PrebuiltDashboardId(IntEnum): BACKEND_QUEUE_SUMMARY = 27 BACKEND_CACHES = 28 NODE_RUNTIME_METRICS = 29 + BFCACHE_METRICS = 30 class PrebuiltDashboard(TypedDict, total=False): @@ -236,6 +237,10 @@ class PrebuiltDashboard(TypedDict, total=False): "prebuilt_id": PrebuiltDashboardId.NODE_RUNTIME_METRICS, "title": "Node.js Runtime Metrics", }, + { + "prebuilt_id": PrebuiltDashboardId.BFCACHE_METRICS, + "title": "BFCache Metrics", + }, ]