Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ public enum Stat {
OPENED_VIEW_ADMIN,
OPENED_MEDIA_LIBRARY,
OPENED_BLOG_SETTINGS,
OPENED_ACCOUNT_SETTINGS,
OPENED_MY_PROFILE,
CREATED_ACCOUNT,
ACCOUNT_LOGOUT,
SHARED_ITEM,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,15 @@ private AnalyticsTrackerMixpanelInstructionsForStat instructionsForStat(
break;
case OPENED_BLOG_SETTINGS:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Site Menu - Opened Settings");
mixpanelInstructionsForEventName("Site Menu - Opened Site Settings");
break;
case OPENED_ACCOUNT_SETTINGS:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Me - Opened Account Settings");
break;
case OPENED_MY_PROFILE:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Me - Opened My Profile");
break;
case CREATED_ACCOUNT:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,13 @@ public void track(AnalyticsTracker.Stat stat, Map<String, ?> properties) {
break;
case OPENED_BLOG_SETTINGS:
eventName = "site_menu_opened";
predefinedEventProperties.put("menu_item", "settings");
predefinedEventProperties.put("menu_item", "site_settings");
break;
case OPENED_ACCOUNT_SETTINGS:
eventName = "me_opened_account_settings";
break;
case OPENED_MY_PROFILE:
eventName = "me_opened_my_profile";
break;
case CREATED_ACCOUNT:
eventName = "account_created";
Expand Down