Given that Google Analytics specifies a maximum of 10M hits per month on a standard free account, that seems to imply that as soon as a website gains more than 328K daily active users you will exceed your allowed quota.
This generously assumes that each user only visits the site once per day, and also only generates a single hit during that session.
I just want to sanity check this fact and make sure I'm not missing something obvious.
Also, does anyone have any suggestions for effectively using google analytics when the DAUs exceed 328K?
If I bundle a few dimensions together like this:
ga('set', {
dimension1: 'f',
dimension2: 'o',
dimension3: 'o',
});
and then do a single post with:
ga('send', 'pageview');
will this count as a single hit or 3 individuals hits (as far as my limit is concerned)?