Critical to understanding friction & opportunities in the shopping process on a product-by-product level.
Ecommerce
Accuracy
How accurate is your recent data?
Behavior
Can you tell what visitors are doing?
A GA4 audit is essential for uncovering missing insights—key data points that organizations don't yet know and can act upon. A well-done audit evaluates both behavioral tracking and traffic attribution, ensuring each is accurate and useful. It also assesses whether the data collected truly supports business decisions and reporting.
This test checks whether the begin_checkout event includes proper product data, specifically ensuring that the items array has complete fields like item_id and item_name.
When this data is missing, GA4 will log (not set) for product-level dimensions during the checkout step—causing:
A checkout without item context is like a receipt with no item line—it’s incomplete and limits business insight.
Our free instant audit tool checks for 90 issues in 90 seconds.
Then gives you a prioritized list of items to tackle.
No cost, no sales call... just free goodness.
SELECT ep.key, ep.value.string_value, COUNT(*) AS count
FROM `your_dataset.events_*`,
UNNEST(event_params) AS ep
WHERE event_name = 'begin_checkout'
AND (ep.key = 'item_id' OR ep.key = 'item_name')
AND (ep.value.string_value IS NULL OR ep.value.string_value = '(not set)')
GROUP BY ep.key, ep.value.string_value;
Want to fix this quickly? Run our Instant Audit
Or hire a pro to help your analytics reflect the real behavior behind each checkout.
gtag('event', 'begin_checkout', {
currency: 'USD',
value: 89.99,
items: [
{
item_id: 'SKU_45678',
item_name: 'Eco-Friendly Water Bottle',
quantity: 2,
price: 44.99
}
]
});
Every Google Analytics audit should result in a plan for more insights.
An insight is:
Identify and remove insight blockers. Don't get tempted to track things you can't act on!