Skip to content

Track unmute events

Manish requested to merge feat/unmute-tracking-m3118 into release/4.25.0

Ticket(s) / Related Merge Requests

(Any issue cards for the merge request, and related merge requests/dependencies)

Closes minds#3118 (closed)

Summary of Changes

Adding in media engagement metrics for:

  • Initial unmute event (when video starts muted).

Testing Considerations

Check snowplow (sp) is called when those events happen in the DOM

You can search Superset and events should appear within 10 minutes:

SELECT *
FROM atomic.com_minds_click_event_1 clicks
              INNER JOIN atomic.events events ON events.event_id = clicks.root_id
                      AND events.collector_tstamp = clicks.root_tstamp
WHERE collector_tstamp>='2022-05-16'
AND ref = 'video-player-unmuted'
LIMIT 10;

Regression Scope

  • unmute functionality

Platform Affected (web, mobile, etc)

all

Developer Testing Completed

manual

Screenshots

Screen_Shot_2022-05-17_at_18.25.44

Does this impact

  • Localization
  • Dark/light mode
  • Guest mode
Edited by Manish

Merge request reports