wonderful-musician-86511
04/28/2022, 7:58 AMReactGA.event({
category: 'Experiment',
action: 'Experiment Viewed',
dimension_1: experiment.key,
dimension_2: result.variationId,
});
GA4 is then linked with BQ
(i think we didn't setup this part correctly, because I can only see tables beginning with ga_sessions_
)
lets just assume we will fix that and we will see tables called ga_events_20220416
is it okay to have daily tables of events, or should we have one big table of events?future-teacher-7046
ga_events_*
. We support the GA4 schema out of a the box. After you connect to BigQuery, it will ask you what format your data is in, and GA4 is one of the options.ReactGA.event("viewed_experiment", {
experiment_id: experiment.key,
variation_id: result.variationId
})
wonderful-musician-86511
05/02/2022, 10:43 AM