We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb08fc3 commit a56f6ceCopy full SHA for a56f6ce
src/sentry/issues/grouptype.py
@@ -19,6 +19,7 @@ class GroupCategory(Enum):
19
PERFORMANCE = 2
20
PROFILE = 3
21
MONITOR = 4
22
+ REPLAY = 5
23
24
25
GROUP_CATEGORIES_CUSTOM_EMAIL = (GroupCategory.ERROR, GroupCategory.PERFORMANCE)
@@ -364,6 +365,14 @@ class MonitorCheckInMissed(GroupType):
364
365
released = True
366
367
368
+@dataclass(frozen=True)
369
+class ReplayDeadClickType(GroupType):
370
+ type_id = 5001
371
+ slug = "replay_click_dead"
372
+ description = "Dead Click Detected"
373
+ category = GroupCategory.REPLAY.value
374
+
375
376
@metrics.wraps("noise_reduction.should_create_group", sample_rate=1.0)
377
def should_create_group(
378
grouptype: Type[GroupType],
0 commit comments