Critical to understanding shopping performance and identifying opportunities for improvement.
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 view_item events are missing required product metadata, particularly item_id or item_name, which may appear as (not set) in GA4 reports.
This event is key for understanding what products users are viewing in detail and forms the foundation for product-level funnel analysis.
If product views are being recorded without full metadata, it causes:
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 event_count
FROM `your_dataset.events_*`,
UNNEST(event_params) AS ep
WHERE event_name = 'view_item'
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 uncover this instantly? Run our Instant Audit
Or hire a pro to QA your product view tracking for every platform and device.
gtag('event', 'view_item', {
currency: 'USD',
value: 89.99,
items: [
{
item_id: 'SKU_12345',
item_name: 'Wireless Keyboard',
item_category: 'Accessories',
quantity: 1
}
]
});
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!