HomeTroubleshooting Hub › Low Traffic and cardinality

Low Traffic and cardinality

Purpose: Understand unique value limits and overflow.

Who this page is for

AudienceWhy it matters to you
AnalystsUnderstand Low Traffic bucket
AdminsPrevent cardinality overflow

Low Traffic and Cardinality

What is Low Traffic?

"Low Traffic" in reports = cardinality overflow

When unique values exceed the limit for a variable, Adobe creates a "Low Traffic" bucket.

Cardinality limits

VariableLimitExample
Page Name300K unique300K different pages
eVar1-250Varies (1M-unlimited)1M unique campaign IDs
prop1-75Varies100K unique search terms

If you exceed the limit:

Example: Cardinality overflow

Day 1-29: You have 500 unique page names (fine, below limit)

Day 30: You add a dynamic page generator that creates 1M URLs like:

Result: All 1M URLs grouped into "Low Traffic"

Problem: You can't see individual products anymore

How to prevent

1. Use summary pages

Instead of tracking 1M product pages individually, track:

Result: Low cardinality, good reporting

2. Truncate values

Instead of full URL, send summary:

// WRONG (high cardinality)
s.prop1 = window.location.href;

// RIGHT (low cardinality)
s.prop1 = "Product Page";

3. Group by category

Instead of individual values, group:

// WRONG (1000s of unique values)
s.eVar1 = sessionData.userEmail;

// RIGHT (5 categories)
s.eVar1 = userSegmentCategory; // "Premium", "Standard", "Free"

4. Monitor cardinality

Check monthly:

---

Next: Double counting

Quick navigation