Features
What Consent Mode Does to Your Analytics Numbers
Why a cookie banner makes your visitor counts modelled rather than measured, and how to read the numbers you get afterwards.
16 September 2026

When you enable google consent mode analytics data, your visitor counts shift from measured to modelled, meaning the numbers you see are estimates based on partial data rather than direct observation. This happens because the cookie banner blocks the initial analytics hit for users who do not explicitly consent, forcing the platform to predict what would have happened had they allowed tracking.
The Mechanics of Modelled Data
Consent Mode sends a signal to the analytics platform indicating whether a user has granted permission for advertising and analytics cookies. If the signal is false, the platform does not record a full interaction. Instead, it marks the session as modelled. The system then uses machine learning to estimate the missing metrics, such as conversions or engagement time, based on the behaviour of users who did consent. This is not a bug; it is a design feature intended to preserve some level of insight while respecting privacy regulations. However, it means that the total number of users is no longer a hard count. It is a projection. The more users who deny consent, the larger the gap between what the model predicts and what actually occurred on the server.
Impact on Independent Product Metrics
For a small studio running multiple distinct products, this modelling introduces noise into the data. Consider the difference between a static site and a dynamic application. Our invoice generator is a free tool with no account requirement, serving static files directly from disk. It does not rely on server-side session storage for core functionality. If we track it with a consent banner, a significant portion of our traffic may be modelled, making it difficult to know exactly how many people actually used the generator versus how many the model thinks did. In contrast, a service like our Instagram scheduling tool, which requires user interaction and potentially stores data, has a different relationship with consent. The modelled data might understate the true value of high-intent users who are privacy-conscious but still engaged. The key issue is that modelled data is less reliable for making precise operational decisions, such as determining if a specific feature is being used or if a bug is affecting a subset of users.
Reading the Numbers Correctly
To interpret these numbers, you must distinguish between measured and modelled segments. Most analytics dashboards allow you to filter by consent status. Look at the measured data first. This is the ground truth: users who explicitly allowed tracking. Use this segment to understand the behaviour of your most engaged, consent-compliant audience. Then, look at the modelled segment as a directional indicator, not a precise metric. If the modelled conversion rate is significantly higher than the measured rate, it suggests that the consenting users are not representative of the whole. This is common in B2C products where privacy concerns are higher among casual users. For a developer running a single VPS, this also has performance implications. While the analytics modelling happens on the platform's side, the initial request still hits your server. If your infrastructure is lean, such as a single machine handling multiple sites, you are still processing the request even if the analytics data is incomplete. The cost of serving the page remains, regardless of whether the data is recorded. Therefore, the financial and operational cost of the visit is real, even if the analytical value is estimated.
Practical Steps for Data Integrity
Do not rely on modelled data for critical business decisions. If you need to know exactly how many people downloaded your wallpaper app or used your highlight tool, consider alternative methods that do not depend on third-party cookie consent. First-party cookies, where you set the cookie directly on your domain with a clear explanation, can sometimes provide more accurate data without the same level of modelling uncertainty. Alternatively, focus on metrics that do not require cookie consent, such as server-side events or API calls that are inherently part of the product functionality. For example, if a user submits an invoice, that action can be logged directly in your database without relying on a browser cookie. This provides a hard count of usage, independent of consent mode. When you do use modelled data, treat it as a trend line rather than a fact. Look for consistent patterns over time rather than daily spikes. A sudden drop in modelled conversions might indicate a change in user behaviour or a technical


