quaint-diamond-21082
03/19/2025, 4:48 PMstrong-mouse-55694
03/19/2025, 5:08 PMquaint-diamond-21082
03/20/2025, 8:40 AMSELECT
conv(hex(events.idvisitor), 16, 16) AS anonymous_id,
events.server_time AS timestamp,
experiment.name AS experiment_id,
pageview.name AS pageview_id,
visit.config_device_model AS device,
visit.config_os AS OS,
visit.location_country AS country
FROM matomo_log_link_visit_action events
LEFT JOIN matomo_log_action experiment
ON events.idaction_event_action = experiment.idaction
AND experiment.`type` = 11 -- Experiment event
LEFT JOIN matomo_log_action pageview
ON events.idaction_url = pageview.idaction
AND pageview.`type` = 1 -- Pageview event
INNER JOIN matomo_log_visit visit
ON events.idvisit = visit.idvisit
quaint-diamond-21082
03/20/2025, 8:41 AMquaint-diamond-21082
03/20/2025, 8:44 AMhelpful-application-7107
03/20/2025, 4:47 PMEngaged
based on that table? the metric currently is just going to count as a 1 so long as the user has a row in that sql table.quaint-diamond-21082
03/21/2025, 8:54 AM