From 13bee5238158d7c15edbbd4545b600c0b5168236 Mon Sep 17 00:00:00 2001 From: Edward Gou Date: Wed, 22 Oct 2025 22:37:21 -0400 Subject: [PATCH] adds flag to enable using new timeseries visualization for widgets --- src/sentry/features/temporary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index f61672ac4cb06d..8bf22a3834c2cf 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -110,6 +110,8 @@ def register_temporary_features(manager: FeatureManager) -> None: manager.add("organizations:dashboards-widget-builder-redesign", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable drilldown flow for dashboards manager.add("organizations:dashboards-drilldown-flow", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) + # Enable new timeseries visualization for dashboard widgets + manager.add("organizations:dashboards-widget-timeseries-visualization", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Data Secrecy manager.add("organizations:data-secrecy", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Data Secrecy v2 (with Break the Glass feature)