Skip to content

Commit 9db534d

Browse files
authored
chore(profiling): Add feature flag for transactions backed profiling (#44966)
1 parent fb16c62 commit 9db534d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,8 @@ def SOCIAL_AUTH_DEFAULT_USERNAME():
10331033
"organizations:profiling-dashboard-redesign": False,
10341034
# Enable the profiling previews
10351035
"organizations:profiling-previews": False,
1036+
# Enable the transactions backed profiling views
1037+
"organizations:profiling-using-transactions": False,
10361038
# Whether to enable ingest for profile blocked main thread issues
10371039
"organizations:profile-blocked-main-thread-ingest": False,
10381040
# Enable multi project selection

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
default_manager.add("organizations:profiling-ui-frames", OrganizationFeature, True)
139139
default_manager.add("organizations:profiling-dashboard-redesign", OrganizationFeature, True)
140140
default_manager.add("organizations:profiling-previews", OrganizationFeature, True)
141+
default_manager.add("organizations:profiling-using-transactions", OrganizationFeature, True)
141142
default_manager.add("organizations:project-event-date-limit", OrganizationFeature, True)
142143
default_manager.add("organizations:project-stats", OrganizationFeature, True)
143144
default_manager.add("organizations:related-events", OrganizationFeature)

0 commit comments

Comments
 (0)