Browse Source

feat(issue-platform): Add an experimental frame drop issue type (#54028)

Pierre Massat 1 year ago
parent
commit
e16cc9418f
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/sentry/issues/grouptype.py

+ 8 - 0
src/sentry/issues/grouptype.py

@@ -362,6 +362,14 @@ class ProfileRegexType(GroupType):
     released = True
 
 
+@dataclass(frozen=True)
+class ProfileFrameDropExperimentalType(GroupType):
+    type_id = 2008
+    slug = "profile_frame_drop_experimental"
+    description = "Frame Drop"
+    category = GroupCategory.PERFORMANCE.value
+
+
 @dataclass(frozen=True)
 class MonitorCheckInFailure(GroupType):
     type_id = 4001