Configuring Segmentation with ContextHub configuring-segmentation-with-contexthub

CAUTION
AEM 6.4 has reached the end of extended support and this documentation is no longer updated. For further details, see our technical support periods. Find the supported versions here.
NOTE
This section describes configuring segmentation when using the ContextHub. If you are using the Client Context functionality, please see the relevant documentation for configuring segmentation for Client Context.

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 will need to 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 allows you to easily personalize your users’ experience. It also allows you to verify the results of your segment definitions.

Accessing Segments accessing-segments

The Audiences console is used to manage segments for ContextHub or Client Context as well as audiences for your Adobe Target account. This documentation covers managing segments for ContextHub. For Client Context segments and Adobe Target segments, please see the relevant documentation.

To access your segments, in global navigation select Navigation > Personalization > Audiences.

chlimage_1-310

Segment Editor segment-editor

The Segment Editor allows you to easily modify a segment. To edit a segment, select a segment in the list of segments and click the Edit button.

segmenteditor

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. In the event of multiple segments being applicable, then the Boost factor is also used. See Creating a New Segment for details on the boost factor.

CAUTION
The segment editor does not check for any circular references. For example, segment A references another segment B, which in turn references segment A. You must ensure that your segments do not contain any circular refernces.

Containers containers

The following containers are available out-of-the-box and allow you to 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.

Container AND
The boolean AND operator
Container OR
The boolean OR operator

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.

Property-Value
Compares a property of a store to a defined value
Property-Property
Compares one property of a store to another property
Property-Segment Reference
Compares a property of a store to another referenced segment
Property-Script Reference
Compares a property of a store to the results of a script
Segment Reference-Script Reference
Compares a referenced segment to the results of a script
NOTE
When comparing values, if the data type of the comparison is not set (i.e. set to auto detect), ContextHub’s segmentation engine will simply compare the values as javascript would. It does not cast values to their expected types, which can lead to misleading results. For example:
null < 30 // will return true
Therefore when creating a segment, you should select a data type whenever the types of compared values are known. For example:
When comparing the property 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.

Segment Reference
Evaluate the referenced segment
Script Reference
Evaluate the referenced script. See the following section Using Script References for more information.

Creating a New Segment creating-a-new-segment

To define your new segment:

  1. After accessing the segments, click or tap the Create button and select Create ContextHub Segment.

    chlimage_1-311

  2. In the New ContextHub Segment, enter a title for the segment as well as a boost value if required and then tap or click Create.

    chlimage_1-312

    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
  3. Drag a comparison or reference to the segment editor it will appear in the default AND container.

  4. Double-click on or tap 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.

    screen_shot_2012-02-02at103135am

    Always set a Data Type if possible to ensure that your comparisons are evaluated properly. See Comparisons for more information.

  5. Click OK to save your definition:

  6. 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.

screen_shot_2012-02-02at105145am

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

  1. Add file to contexthub.segment-engine.scripts clientlib.

  2. 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);
    
    })();
    
  3. 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

  1. Create ContextHub segment.
  2. Add Script Reference component in the desired place of the segment.
  3. Open the edit dialog of the Script Reference component. If properly configured, the script should be available in the Script name drop-down.

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.

  1. Preview a page
  2. Click the ContextHub icon to reveal the ContextHub toolbar
  3. Select a persona that matches the segment you created
  4. 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:

screen_shot_2012-02-02at105926am

Or if it is not resolved:

screen_shot_2012-02-02at110019am

NOTE
All traits are resolved immediately, though most only change on page reload.

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, please see the related documentation on authoring targeted content.

  1. 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.

    chlimage_1-313

  2. Switch to preview mode and using the context hub, switch to a persona that does not match the segmentation configured for the experience.

    chlimage_1-314

  3. Switch to a persona that does match the segmentation configured for the experience and see that the experience changes accordingly.

    chlimage_1-315

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.

recommendation-more-help
5ce3024a-cbea-458b-8b2f-f9b8dda516e8