- Optimizely Feature Experimentation
- Optimizely Full Stack (Legacy)
- Optimizely Web Experimentation
- Optimizely Personalization
- Optimizely Performance Edge
Your Monthly Active Users (MAUs) are the number of unique users used in a decision or tracking event. It is a measure of the overall traffic where you are using Optimizely Experimentation's snippet, APIs, or SDKs to do something, specifically:
- Experiment evaluation.
- Personalization campaign evaluation.
- Event tracking.
- Any page where the Optimizely Web Experimentation snippet is loaded unless restricted by holdEvents or optOut features.
Unlike impressions, it is not a measure of what percent of that traffic you are experimenting on—every user that gets evaluated is counted. This lets you run large-scale experiments at 100% traffic to reach statistical significance.
This article describes how MAUs work at Optimizely Experimentation from a technical perspective.
MAUs in Optimizely Feature Experimentation
In Optimizely Feature Experimentation, a monthly active user is counted each time a decision or tracking event is sent for a unique user ID:
- When a Decide method is called, and a decision event (an impression) is triggered.
- When the Track Event method is called, and a conversion event is triggered.
Decide
method is called.MAUs in Optimizely Full Stack (legacy)
In Optimizely Full Stack, a monthly active user is counted each time a decision or tracking event is sent for a unique user ID:
- When the
optimizelyClientInstance.activate()
method is used, and the visitor is bucketed into a variation of an A/B test (experiment evaluation). - When the
optimizelyClientInstance.isFeatureEnabled()
method is used, and the visitor is bucketed into a feature test (feature flag or rollout evaluation). - When the
optimizelyClientInstance.track()
method is used (tracking event).
Users are counted even if they receive a disabled flag due to activate()
or isFeatureEnabled()
because a decision event was made.
MAUs in Optimizely Web Experimentation
In Optimizely Web Experimentation, each unique visitor who encounters a page where the snippet is loaded is counted as an MAU, even if the snippet is empty and does not contain page activations, events, or experiment evaluations.
If you do not want Optimizely Web Experimentation to run on a specific page, remove or disable the snippet using the relevant JavaScript call in Project JavaScript.
De-duplication
As long as it is the same unique user ID, Optimizely Web Experimentation de-duplicates. For example, if a user goes to a page with one project's snippet and then a page with another project's snippet, only one MAU is counted as long as it is the same unique user ID.
Decision event
When an Optimizely Feature Experimentation experiment or a page within an Optimizely Web Experimentation experiment is activated, a decision request is sent. Decision requests look like this:
In the request payload, the decision attribute indicates the experiment that it applies to.
Example
The following scenario has three multipliers:
- Experiments
- Pages (as defined in Optimizely Experimentation)
- Pageviews
The Attic and Button company is experimenting on www.atticandbutton.us
. Consider a visitor who starts by visiting the Attic and Button homepage, where there are three experiments running. One of these experiments has two Optimizely Experimentation pages that both target the homepage:
Experiment 1
- Homepage –
https://www.atticandbutton.us/
(simple match)
Experiment 2
- Homepage –
https://www.atticandbutton.us/
(simple match)
Experiment 3
- Homepage –
https://www.atticandbutton.us/
(simple match) - Global page (a page defined in Optimizely Experimentation that targets all URLs of a website) –
https://www.atticandbutton.us/
(substring match)
Three bucketing decisions are made on whether to include that user in the experiment or not, but since the user ID is unique, this only counts towards one monthly active user (MAU). This is in contrast to impressions, which would have counted four impressions for this one user.
If the visitor refreshes the page, they still only count as one monthly active user. This is in contrast to impressions, which would have generated another four impressions, making the total eight impressions for this one particular user.
Now, suppose that you are running a search algorithm experiment with Optimizely Feature Experimentation on the homepage too. When a visitor types a search term, the results are refreshed without reloading the page. The Optimizely Feature Experimentation SDK makes a decision for a variation every time a new search is done. This means that if a visitor searches for "shirts," changes their search to "denim shirts," then changes their search again to "button-down shirts," only one monthly active user would be counted since it is based on a unique user ID. This is in contrast to impressions, which would have counted three impressions, making the total usage count now 11 impressions.
Verify monthly active users with Experimentation Events Export
Optimizely Experimentation uses the server timestamp to calculate monthly active users, as opposed to the timestamp on the client device where the monthly active user originated. Doing so makes it possible to accurately verify monthly active users all the way down to the experiment level.
You can use Optimizely Experimentation's Experimentation Events Export to get a complete list of all monthly active users that occurred within a specific time period. You can then compare that information to your invoice, or determine whether any of your experiments are generating more monthly active users than they should be. To learn how to access that data, see Experimentation Events Export services in Optimizely Experimentation.
View MAU usage
See View Impression usage if you are billed by impressions.
To view your MAU Usage Summary in the Optimizely Application. Go to Account Settings > Usage.
Forecast MAUs
To forecast MAUs, ask the following questions:
-
Where will you be using Optimizely Experimentation?
These could be multiple channels, regions, business units, and so on (for example, Android, iOS, website, and so on).
-
How many unique users/visitors do you have per month?
Include unique users/visitors, not page views. Excludes bot traffic. We recommend you get these numbers from internal analytics. Note: Provide the average across the year, note the peak.
-
How complete is your Optimizely Experimentation implementation?
If the Feature Experimentation SDK or Web snippet runs for most users (for example, feature flags in-app navigation or experiments on a product detail page layout), this should be 90-100%.
If Optimizely Experimentation is only used on a small part of the site (for example, personalizing a few landing pages, rolling out minor features only) this could be as low as 5-10%.
-
How much annual growth do you expect?
Year over year, how much more traffic do you expect?
Please sign in to leave a comment.