Use segments to focus your audience - Amazon CloudWatch
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Use segments to focus your audience

You can define audience segments and use them in your launches and experiments. A segment is a portion of your audience that shares one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age.

Using a segment in an experiment limits that experiment to evaluating only the users who match the segment criteria. When you use one or more segments in a launch, you can define different traffic splits for the different audience segments.

Segment rule pattern syntax

To create a segment, define a segment rule pattern. Specify the attributes that you want to use to evaluate whether a user session will be in the segment. The pattern that you create is compared to the value of evaluationContext that Evidently finds in a user session. For more information, see Using EvaluateFeature.

To create an segment rule pattern, specify the fields that you want the pattern to match. You can also use logic in your pattern, such as And, Or, Not and Exists.

For an evaluationContext to match a pattern, the evaluationContext must match all parts of the rule pattern. Evidently ignores the fields in the evaluationContext that aren't included in the rule pattern.

The values that rule patterns match follow JSON rules. You can include strings enclosed in quotation marks ("), numbers, and the keywords true, false, and null.

For strings, Evidently uses exact character-by-character matching without case-folding or any other string normalization. Therefore, rule matches are case-sensitive. For example, if your evaluationContext includes a browser attribute but your rule pattern checks for Browser, it will not match.

For numbers, Evidently uses string representation. For example, 300, 300.0, and 3.0e2 are not considered equal.

When you write rule patterns to match evaluationContext, you can use the TestSegmentPattern API or the test-segment-pattern CLI command to test that your pattern matches the correct JSON. For more information, see TestSegmentPattern.

The following summary shows all the comparison operators that are available in Evidently segment patterns.

Comparison Example Rule syntax

Null

UserID is null

{ "UserID": [ null ] }

Empty

LastName is empty

{ "LastName": [""] }

Equals

Browser is "Chrome"

{ "Browser": [ "Chrome" ] }

And

Country is "France" and Device is "Mobile"

{ "Country": [ "France" ], "Device": ["Mobile"] }

Or (multiple values of a single attribute)

Browser is "Chrome" or "Firefox"

{ "Browser": ["Chrome", "Firefox"] }

Or (different attributes)

Browser is "Safari" or Device is "Tablet"

{ "$or": [ {"Browser": ["Safari"]}, {"Device": ["Tablet"}] ] }

Not

Browser is anything but "Safari"

{ "Browser": [ { "anything-but": [ "Safari" ] } ] }

Numeric (equals)

Price is 100

{ "Price": [ { "numeric": [ "=", 100 ] } ] }

Numeric (range)

Price is more than 10, and less than or equal to 20

{ "Price": [ { "numeric": [ ">", 10, "<=", 20 ] } ] }

Exists

Age field exists

{ "Age": [ { "exists": true } ] }

Does not exist

Age field does not exist

{ "Age": [ { "exists": false } ] }

Begins with a prefix

Region is in the United States

{ "Region": [ {"prefix": "us-" } ] }

Ends with a suffix

Location has a suffix "West"

{ "Region": [ {"suffix": "West" } ] }

Segment rule examples

All of the following examples assume that you are passing values for evaluationContext with the same field labels and values that you are using in your rule patterns.

The following example matches if Browser is Chrome or Firefox and Location is US-West.

{ "Browser": ["Chrome", "Firefox"], "Location": ["US-West"] }

The following example matches if Browser is any browser except Chrome, the Location starts with US, and an Age field exists.

{ "Browser": [ {"anything-but": ["Chrome"]}], "Location": [{"prefix": "US"}], "Age": [{"exists": true}] }

The following example matches if the Location is Japan and either Browser is Safari or Device is Tablet.

{ "Location": ["Japan"], "$or": [ {"Browser": ["Safari"]}, {"Device": ["Tablet"]} ] }

Create a segment

After you create a segment, you can use it in any launch or experiment in any project.

To create a segment
  1. Open the CloudWatch console at https://console.amazonaws.cn/cloudwatch/.

  2. In the navigation pane, choose Application Signals, Evidently.

  3. Choose the Segments tab.

  4. Choose Create segment.

  5. For Segment name, enter a name to use to identify this segment.

    Optionally, add a description.

  6. For Segment pattern, enter a JSON block that defines the rule pattern. For more information about rule pattern syntax, see Segment rule pattern syntax.