From 7a3e192d99758bac3bda53aad6b5a7c2a4da7c49 Mon Sep 17 00:00:00 2001 From: k-fish Date: Mon, 22 Feb 2021 11:07:24 -0800 Subject: [PATCH] feat(flag): Add feature flags for segment explorer Adds flags for ops breakdown and segment explorer --- src/sentry/conf/server.py | 4 ++++ src/sentry/features/__init__.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index 7fe402cc53c9e0..c1fe6fbe16a951 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -921,6 +921,10 @@ def create_partitioned_queues(name): "organizations:performance-landing-v2": False, # Enable the views for performance vitals "organizations:performance-vitals-overview": False, + # Enable views for ops breakdown + "organizations:performance-ops-breakdown": False, + # Enable views for tag explorer + "organizations:performance-tag-explorer": False, # Enable the new Project Detail page "organizations:project-detail": False, # Enable the new Related Events feature diff --git a/src/sentry/features/__init__.py b/src/sentry/features/__init__.py index 2376a905d93a76..b1315a62180bd0 100644 --- a/src/sentry/features/__init__.py +++ b/src/sentry/features/__init__.py @@ -118,6 +118,8 @@ default_manager.add("organizations:issue-list-trend-sort", OrganizationFeature) # NOQA default_manager.add("organizations:performance-landing-v2", OrganizationFeature) # NOQA default_manager.add("organizations:performance-vitals-overview", OrganizationFeature) # NOQA +default_manager.add("organizations:performance-ops-breakdown", OrganizationFeature) # NOQA +default_manager.add("organizations:performance-tag-explorer", OrganizationFeature) # NOQA # NOTE: Don't add features down here! Add them to their specific group and sort # them alphabetically! The order features are registered is not important.