Skip to content

Commit e16cc94

Browse files
authored
feat(issue-platform): Add an experimental frame drop issue type (#54028)
1 parent 4c700a2 commit e16cc94

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/sentry/issues/grouptype.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,14 @@ class ProfileRegexType(GroupType):
362362
released = True
363363

364364

365+
@dataclass(frozen=True)
366+
class ProfileFrameDropExperimentalType(GroupType):
367+
type_id = 2008
368+
slug = "profile_frame_drop_experimental"
369+
description = "Frame Drop"
370+
category = GroupCategory.PERFORMANCE.value
371+
372+
365373
@dataclass(frozen=True)
366374
class MonitorCheckInFailure(GroupType):
367375
type_id = 4001

0 commit comments

Comments
 (0)