Feed Analytics Events
The SDK has in built analytics events that are trigged for the below listed events. You can track those using tools like Segment, Mixpanel, Clevertap etc. You can find the classes to extend to leverage the events in the following tech stack:
- Android
- iOS
- Flutter
We are working on implementing analytics for React Native and ReactJS
note
The event name would be prefixed as LM_EventName
Event Name | Event Category | Event Description | Event Properties |
---|---|---|---|
Notification Clicked | Notification | user taps on the bell icon and lands on the notification page | - |
Notification Recieved | Notification | Notification recieved by user device | - |
Post creation started | Feed | user clicks on "New Post" CTA | post_id |
Clicked on Attachment | Feed | User clicks on any option to attach attachments in post | post_id type (photo, video, file) |
User tagged in a post | Feed | User tags another user while creating the post | tagged_user_id tagged_user_count post_id |
Link attached in the post | Feed | User attaches a link to the post | link post_id |
Image attached to post | Feed | User attaches an image to the post | image_count (in case of multiple images attached) post_id |
Video attached to post | Feed | User attaches a video to the post | video_count (in case of multiple videos attached) post_id |
Document attached in post | Feed | User attaches a file to the post | - document_count (in case of multiple documents attached) - post_id |
Post creation completed | Feed | User clicks on "Post" after completing the post creation | - user_tagged (yes, no) - tagged_users_count tagged_users_id - link_attached (yes, no) - link - image_attached (yes, no) - image_count - video_attached (yes, no) - video_count - document_attached (yes, no) - document_count |
Post pinned | Feed | CM pins a post by choosing "Pin this post" from the menu | - created_by_id (ID of the user who created the post) - post_id - post_type (text, image, video, document, link) |
Post unpinned | Feed | CM unpins a post by choosing "Unpin this post" from the menu | - created_by_id (ID of the user who created the post) - post_id - post_type (text, image, video, document, link) |
Post edited | Feed | User selects "Edit" from the post menu | - created_by_id (ID of the user who created the post) - post_id - post_type (text, image, video, document, link) |
Post reported | Feed | User selects a report from the post menu | - created_by_id (ID of the user who created the post) - post_id - report_reason (nudity, inappropriate_language, hate_speech, terrorism, spam, others) - post_type (text, image, video, document, link) |
Post deleted | Feed | User deletes a post created by them or CM deletes a post | - user_state (member, CM) - user_id (ID of the user who created the post if CM deletes it) - post_id - post_type (text, image, video, document, link) |
Feed opened | Feed | User lands on the feed screen | feed_type (universal_feed, following_feed) |
Like list open | Feed | User taps on the like count and views the list of users | post_id |
Comment list open | Feed | User taps on "Comments" and views the comments on the post | post_id |
Comment deleted | Feed | Post creator deletes a comment | - post_id - comment_id |
Comment reported | Feed | Post creator reports a comment | - post_id - user_id (ID of the user whose comment is being reported) - comment_id - reason (nudity, inappropriate_language, hate_speech, terrorism, spam, others) |
Comment posted | Feed | User adds comments to a post | post_id comment_id |
Reply posted | Feed | User adds a reply to a comment | - user_id (ID of the user whose comment is being replied) - post_id - comment_id - comment_reply_id |
Reply deleted | Feed | Post creator deletes a reply | - post_id - comment_id - comment_reply_id |
Reply reported | Feed | Post creator reports a reply | - post_id - comment_id - comment_reply_id - user_id (ID of the user whose comment reply is being reported) - reason (nudity, inappropriate_language, hate_speech, terrorism, spam, others) |