diff --git a/static/app/components/events/eventReplay/index.tsx b/static/app/components/events/eventReplay/index.tsx index 6f8ca857b1c7d9..b7ef5372366074 100644 --- a/static/app/components/events/eventReplay/index.tsx +++ b/static/app/components/events/eventReplay/index.tsx @@ -118,7 +118,12 @@ function EventReplayContent({ : ''; const replayUrl = baseUrl ? `${baseUrl}replays/${location.search}/` : ''; const seeAllReplaysButton = replayUrl ? ( - + {t('See All Replays')} ) : undefined; diff --git a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx index 71f1cf461deecb..fafe5675ff19d2 100644 --- a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx +++ b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx @@ -119,9 +119,13 @@ function ReplayPreviewPlayer({ onClick={() => handleBackClick?.()} aria-label={t('Previous Clip')} disabled={!handleBackClick} + analyticsEventName="Replay Preview Player: Clicked Previous Clip" + analyticsEventKey="replay_preview_player.clicked_previous_clip" /> )} handleForwardClick?.()} aria-label={t('Next Clip')} disabled={!handleForwardClick} + analyticsEventName="Replay Preview Player: Clicked Next Clip" + analyticsEventKey="replay_preview_player.clicked_next_clip" /> )} diff --git a/static/app/views/issueDetails/groupReplays/groupReplays.tsx b/static/app/views/issueDetails/groupReplays/groupReplays.tsx index 0cc508d8837f53..df4bb08037b04c 100644 --- a/static/app/views/issueDetails/groupReplays/groupReplays.tsx +++ b/static/app/views/issueDetails/groupReplays/groupReplays.tsx @@ -211,6 +211,8 @@ function GroupReplaysTable({ setSelectedReplayIndex(selectedReplayIndex + 1); }} icon={} + analyticsEventKey="issue_details.replay_tab.play_next_replay" + analyticsEventName="Issue Details: Replay Tab Clicked Play Next Replay" > {t('Play Now')}