One of the most critical data points in understanding friction and 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 purchase events are firing with incomplete or missing product metadata, particularly when item_name or item_id appear as (not set).
The purchase event is the most important event in ecommerce tracking, and missing item details at this stage severely impacts:
If GA4 records purchases without product data, you are missing out on opportunities to improve product sales performance.
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 = 'purchase'
AND (ep.key = 'item_name' OR ep.key = 'item_id')
AND (ep.value.string_value IS NULL OR ep.value.string_value = '(not set)')
GROUP BY ep.key, ep.value.string_value;
Need a faster answer? Run our Instant Audit
Or hire a pro to ensure your ecommerce tracking captures exactly what your customers buy.
gtag('event', 'purchase', {
transaction_id: 'T12345',
currency: 'USD',
value: 129.99,
tax: 5.00,
shipping: 10.00,
items: [
{
item_id: 'SKU_789',
item_name: 'Noise-Canceling Headphones',
quantity: 1,
price: 129.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!