Add Pendo track event instrumentation#119
Open
novus-by-pendo-dev[bot] wants to merge 1 commit into
Open
Conversation
Instruments 10 track events: user_signed_up, user_logged_in, user_logged_out, user_profile_updated, message_sent, ai_response_received, chat_created, chat_deleted, command_used, and chat_search_executed with relevant metadata properties for analytics and segmentation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Novus updated 15 funnel steps, 1 track event. View details |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
user_signed_up,user_logged_in,user_logged_out— tracks OAuth provider used and login/signup conversionsuser_profile_updated— tracks which fields changed and whether it's initial profile setupchat_created,chat_deleted,chat_search_executed— tracks chat lifecycle and search usage with debouncingmessage_sent,ai_response_received,command_used— tracks core AI interaction patterns including slash commandsFiles changed
extension/shared/pages/signUp.tsx—user_signed_upevent in signup mutation onSuccessextension/shared/pages/login.tsx—user_logged_inevent in login mutation onSuccessextension/shared/components/layout/profileDropdown.tsx—user_logged_outevent before session clearextension/shared/pages/userDetails.tsx—user_profile_updatedevent in update mutation onSuccessextension/shared/pages/chat.tsx—message_sent,command_used,ai_response_receivedeventsextension/shared/components/chat/chatList.tsx—chat_created,chat_search_executed(debounced) eventsextension/shared/components/chat/chatListItem.tsx—chat_deletedevent in delete mutation onSuccessTest plan
user_signed_upfires once after successful OAuth sign-up with correct provider metadatauser_logged_infires once after successful OAuth loginuser_logged_outfires before Pendo session is cleareduser_profile_updatedcaptures correct changed fieldsmessage_sentfires on each message submission with correct metadatacommand_usedfires only when a slash command is usedai_response_receivedfires on successful AI responsechat_createdfires when clicking New Chatchat_deletedfires with correct remaining countchat_search_executedfires with 500ms debounce, not on every keystroke