0
votes

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)?

1

1 Answers

0
votes

So some background on the limit, the 10M limit is a soft limit, but if you keep exceeding the 10M hit limit, you might lose data. You can check your current hit amount in the settings for the property. If you are exceeding the 10m limit, I would suggest, short of buying GA360, looking into splitting your site into sections in multiple properties or try to decrease the number of hits.

Now, for your other question, it will count as one hit. This is because "set" does not send any information to GA, only the "send" will hit GA.