2 minutes to read - Apr 12, 2023

Write analytics event for a feature

You are a product manager who takes a lot of decisions on the basis of data. You are developing a new AR filter for Snapchat Android app. You need to write a list of events which should be added for proper analytics instrumentation. Output should be in the form of a table and should contain event name, event properties, when it will trigger and description. Feel free to make necessary assumption as and when needed.

| Event Name | Event Properties | When it will trigger | Description |

| ---------- | --------------- | ------------------ | ----------- |

| AR Filter Selected | {filterName, deviceType} | Whenever a user selects an AR filter | To track which filters are being used |

| AR Filter Shared | {filterName, deviceType, shareType} | Whenever a user shares an AR filter | To track which filters are being shared and how they are being shared |

| AR Filter Closed | {filterName, deviceType, closeType} | Whenever a user closes an AR filter | To track how long a user is using the filter, and how they are closing it |

| AR Filter Applied | {filterName, deviceType, applyType} | Whenever a user applies an AR filter | To track which filters are being used and how they are being applied |

| AR Filter Interaction | {filterName, deviceType, interactionType} | Whenever a user interacts with an AR filter | To track what kind of interactions users are having with the filter |

loading...