Skip to content

Commit 3bb7520

Browse files
committed
feat(analytics): Add submit and rework events for micro chat interactions
1 parent dc789df commit 3bb7520

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

static/app/utils/analytics/issueAnalyticsEvents.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,18 @@ export type IssueEventParameters = {
8282
run_id: string;
8383
step_index: number;
8484
};
85+
'autofix.comment_thread.rework': {
86+
group_id: string;
87+
is_agent_comment: boolean;
88+
run_id: string;
89+
step_index: number;
90+
};
91+
'autofix.comment_thread.submit': {
92+
group_id: string;
93+
is_agent_comment: boolean;
94+
run_id: string;
95+
step_index: number;
96+
};
8597
'autofix.root_cause.find_solution': {
8698
group_id: string;
8799
instruction_provided: boolean;
@@ -463,6 +475,8 @@ export const issueEventMap: Record<IssueEventKey, string | null> = {
463475
'Autofix: Coding Agent Launch From Root Cause',
464476
'autofix.comment_thread.close': 'Autofix: Comment Thread Closed',
465477
'autofix.comment_thread.open': 'Autofix: Comment Thread Opened',
478+
'autofix.comment_thread.rework': 'Autofix: Comment Thread Rework',
479+
'autofix.comment_thread.submit': 'Autofix: Comment Thread Submit',
466480
'autofix.root_cause.find_solution': 'Autofix: Root Cause Find Solution',
467481
'autofix.setup_modal_viewed': 'Autofix: Setup Modal Viewed',
468482
'breadcrumbs.issue_details.change_time_display': 'Breadcrumb Time Display Toggled',

0 commit comments

Comments
 (0)