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 f0a4296 commit ee0db41Copy full SHA for ee0db41
static/app/types/group.tsx
@@ -209,6 +209,9 @@ export enum IssueTitle {
209
REPLAY_RAGE_CLICK = 'Rage Click Detected',
210
REPLAY_HYDRATION_ERROR = 'Hydration Error Detected',
211
212
+ // Metric Issues
213
+ METRIC_ISSUE = 'Issue Detected by Metric Monitor',
214
+
215
QUERY_INJECTION_VULNERABILITY = 'Potential Query Injection Vulnerability',
216
}
217
@@ -240,6 +243,8 @@ export const ISSUE_TYPE_TO_ISSUE_TITLE = {
240
243
241
244
replay_click_rage: IssueTitle.REPLAY_RAGE_CLICK,
242
245
replay_hydration_error: IssueTitle.REPLAY_HYDRATION_ERROR,
246
247
+ metric_issue: IssueTitle.METRIC_ISSUE,
248
};
249
250
export function getIssueTitleFromType(issueType: string): IssueTitle | undefined {
0 commit comments