Configuring Segmentation with ContextHub configuring-segmentation-with-contexthub
Segmentation is a key consideration when creating a campaign. See Managing Audiences for information on how segmentation works and key terms.
Depending on the information you have already collected about your site visitors and the goals you want to achieve, you must define the segments and strategies needed for your targeted content.
These segments are then used to provide a visitor with specifically targeted content. This content is maintained in the Personalization section of the website. Activities defined here can be included on any page and define which visitor segment the specialized content is applicable for.
AEM lets you easily personalize your users’ experience. It also lets you verify the results of your segment definitions.
Accessing Segments accessing-segments
The Audiences console is used to manage segments for ContextHub or Client Context and audiences for your Adobe Target account. This documentation covers managing segments for ContextHub. For Client Context segments and Adobe Target segments, see the relevant documentation.
To access your segments you need to select your configuration. In global navigation select Navigation > Personalization > Audiences. You will see the available configurations:
Select your configuration to see the segments, for example, WKND Site:
Segment Editor segment-editor
The Segment Editor lets you easily modify a segment. To edit a segment, select a segment in the list of segments and click the Edit button.
Using the components browser you can add AND and OR containers to define the segment logic, then add additional components to compare properties and values or reference scripts and other segments to define the selection criteria (see Creating a New Segment) to define the exact scenario for selecting the segment.
When the entire statement evaluates to true then the segment has resolved. If there are multiple applicable segments, then the Boost factor is also used. See Creating a New Segment for details on the boost factor.
Containers containers
The following containers are available out-of-the-box and let you group comparisons and references together for boolean evaluation. They can be dragged from the components browser to the editor. See the following section Using AND and OR Containers for more information.
Comparisons comparisons
The following segment comparisons are available out-of-the-box to evaluate segment properties. They can be dragged from the components browser to the editor.
null < 30 // will return true
profile/age
, you already know that the compared type will be number, so even if profile/age
is not set, a comparison profile/age
less-than 30 will return false, as you would expect.References references
The following references are available out-of-the-box to link directly to a script or another segment. They can be dragged from the components browser to the editor.
Creating a New Segment creating-a-new-segment
To define your new segment:
-
After accessing the segments, navigate to the folder where you would like to create the segment.
-
click the Create button and select Create ContextHub Segment.
-
In the New ContextHub Segment, enter a title for the segment and a boost value if necessary and then click Create.
Each segment has a boost parameter that is used as a weighting factor. A higher number indicates that the segment will be selected in preference to a segment with a lower number in instances where multiple segments are valid.
- Minimum value:
0
- Maximum value:
1000000
- Minimum value:
-
Drag a comparison or reference to the segment editor it will appear in the default AND container.
-
Double-click the configure option of the new reference or segment to edit the specific parameters. In this example, we are testing for people in San Jose.
Always set a Data Type if possible to ensure that your comparisons are evaluated properly. See Comparisons for more information.
-
Click OK to save your definition:
-
Add more components as required. You can formulate boolean expressions using the container components for AND and OR comparisons (see Using AND and Or Containers below). With the segment editor you can delete components not needed anymore, or drag them to new positions within the statement.
Using AND and OR Containers using-and-and-or-containers
Using the AND and OR container components, you can construct complex segments in AEM. When doing this, it helps to be aware of a few basic points:
- The top-level of the definition is always the AND container that is initially created. This cannot be changed, but does not have an effect on the rest of your segment definition.
- Ensure that the nesting of your container makes sense. The containers can be viewed as the brackets of your boolean expression.
The following example is used to select visitors who are considered in our prime age group:
Male and between the ages of 30 and 59
OR
Female and between the ages of 30 and 59
You start by placing an OR container component within the default AND container. Within the OR container, you add two AND containers and within both of these you can add the property or reference components.
Using Script References using-script-references
By using the Script Reference component, the evaluation of a segment property can be delegated to an external script. Once the script is configured properly, it can be used as any other component of a segment condition.
Defining a Script to Reference defining-a-script-to-reference
-
Add file to
contexthub.segment-engine.scripts
clientlib. -
Implement a function that returns a value. For example:
code language-none ContextHub.console.log(ContextHub.Shared.timestamp(), '[loading] contexthub.segment-engine.scripts - script.profile-info.js'); (function() { 'use strict'; /** * Sample script returning profile information. Returns user info if data is available, false otherwise. * * @returns {Boolean} */ var getProfileInfo = function() { /* let the SegmentEngine know when script should be re-run */ this.dependOn(ContextHub.SegmentEngine.Property('profile/age')); this.dependOn(ContextHub.SegmentEngine.Property('profile/givenName')); /* variables */ var name = ContextHub.get('profile/givenName'); var age = ContextHub.get('profile/age'); return name === 'Joe' && age === 123; }; /* register function */ ContextHub.SegmentEngine.ScriptManager.register('getProfileInfo', getProfileInfo); })();
-
Register the script with
ContextHub.SegmentEngine.ScriptManager.register
.
If the script depends on additional properties, the script should call this.dependOn()
. For example, if the script depends on profile/age
:
this.dependOn(ContextHub.SegmentEngine.Property('profile/age'));
Referencing a Script referencing-a-script
- Create ContextHub segment.
- Add Script Reference component in the desired place of the segment.
- Open the edit dialog of the Script Reference component. If properly configured, the script should be available in the Script name drop-down.
Organizing Segments organizing-segments
If you have many segments, they can become hard to manage as a flat list. In such cases, it can be useful to create folders to manage your segments.
Create a New Folder create-folder
-
After accessing the segments, click the Create button and select Folder.
-
Provide a Title and a Name for your folder.
-
The Title should be descriptive.
-
The Name will become the node name in the repository.
- It will be automatically generated based on the title and adjusted according to AEM naming conventions.
- It can be adjusted if necessary.
-
-
Click Create.
-
The folder will appear in the list of segments.
- How you sort your columns will affect where in the list the new folder appears.
- You can click the column headings to adjust your sort.
Modify Existing Folders modify-folders
-
After accessing the segments, click the folder you wish to modify to select it.
-
Click Rename in the toolbar to rename the folder.
-
Provide a new Folder Title and click Save.
Delete a Folder
-
After accessing the segments, click the folder you wish to modify to select it.
-
Click Delete in the toolbar to delete the folder.
-
A dialog presents a list of folders selected for deletion.
- Click Delete to confirm.
- Click Cancel to abort.
-
If any of the selected folders contains subfolders or segments, their deletion must be confirmed.
- Click Force Delete to confirm.
- Click Cancel to abort.
Testing the Application of a Segment testing-the-application-of-a-segment
Once the segment has been defined, potential results can be tested with the help of the ContextHub.
- Preview a page
- Click the ContextHub icon to reveal the ContextHub toolbar
- Select a persona that matches the segment you created
- The ContextHub will resolve the applicable segments for the selected persona
For example, our simple segment defintion to identify users in our prime age group is a simple segment definition is based on the age and gender of the user. Loading a specific persona that matches those criteria shows if that the segment is successfully resolved:
Or if it is not resolved:
Such tests can also be performed on content pages and in combination with targeted content and related Activities and Experiences.
If you have set up an activity and experience using the prime age group segment example above, you can easily test your segment with the activity. For details about setting up an activity, see the related documentation on authoring targeted content.
-
In editing mode of a page where you have set up targeted content, you can see that the content is targeted via arrow icon on the content.
-
Switch to preview mode and using the context hub, switch to a persona that does not match the segmentation configured for the experience.
-
Switch to a persona that does match the segmentation configured for the experience and see that the experience changes accordingly.
Using Your Segment using-your-segment
Segments are used are used to steer the actual content seen by specific target audiences. See Managing Audiences for more information about audiences and segments and Authoring Targeted Content about using audiences and segments to target content.