-
Discrepancy in GA4's Today's Active Users Data
Hey there, I’m in the middle of moving from UA to GA4 and I’ve noticed that the “Active users today” data I’m getting from the GA4 site/api isn’t lining up. At the moment, our properties which are compatible with GTM are reporting to both UA and GA4, so I thought I’d use one of these properties to illustrate my query.
Here are my current metrics from both UA and GA4: UA Current: 5 UA Today: 92 GA4 Current: 17 GA4 Today: 16
While I’m okay with the difference in the current users, what’s bugging me is the count for active users today. The value for UA seems legit but I’m certain the number from GA4 is way off. It doesn’t match up with UA, nor does it make sense how it could be lower than the count for the last 15 minutes!
I don’t think I’m using the API wrong, since I’m seeing the same figures on the analytics site:
I’m puzzled as to why this is happening. Do you think GA4 lags behind UA when it comes to processing today’s day in a report?
Cheers,
JoelP.S. Below is the request I made for my report, pretty straightforward:
Here's what it looks like: RunReportRequest rrr = new RunReportRequest { DateRanges = new List<DateRange> { new DateRange { StartDate = "today", EndDate = "today" } }, Metrics = new List<Metric> { new Metric { Name = "activeUsers" } }, };
Log in to reply.