How to target specific users
Evaluation Context
An evaluation context in a feature flagging system is crucial for determining the output of a feature flag evaluation. It's a collection of pertinent data about the conditions under which the evaluation is being made. his data can be supplied through a mix of static information (server name, IP, etc ...) and dynamic inputs (information about the user performing the action, etc ...), along with state information that is implicitly carried through the execution of the program.
When using GO Feature Flag, it's often necessary to personalize the experience for different users. This is where the concept of a targeting key comes into play. A targeting key is a unique identifier that represents the context of the evaluation (email, session id, a fingerprint or anything that is consistent), ensuring that they are consistently exposed to the same variation of a feature, even across multiple visits or sessions.
For instance, GO Feature Flag ensures that in cases where a feature is being rolled out to a percentage of users, based on the targeting key, they will see the same variation each time they encounter the feature flag.
The targeting key is a fundamental part of the evaluation context because it directly affects the determination of which feature variant is served to a particular user, and it maintains that continuity over time.
Reserved properties in the evaluation context
When you create an evaluation context some fields are reserved for GO Feature Flag.
Those fields are used by GO Feature Flag directly, you can use them as will but you should be aware that they are used by GO Feature Flag.
Field | Description |
---|---|
gofeatureflag.currentDateTime | If this property is set, we will use this date as base for all the rollout strategies which implies dates (experimentation, progressive and scheduled). Format: Date following the RF3339 format. |
gofeatureflag.flagList | If this property is set, in the bulk evaluation mode (for the client SDK) we will only evaluate the flags in this list. If empty or not set the default behavior is too evaluate all the flags. Format: []string |
Rule format
A rule is a configuration that allows to serve a variation based on some conditions.
Format details
Field | Description |
---|---|
name (optional) | Name of your rule. This is needed when your are updating a rule using a scheduled rollout. |
query | Query represents an antlr query in the nikunjy/rules format.
See query format to have the syntax. Note: if you use the field |
variation (optional) | Name of the variation to return. |
percentage (optional) | Represents the percentage we should give to each variation.
The format is the name of the variation and the percentage for this one. |
progressiveRollout (optional) | Allows you to ramp up the percentage of your flag over time. You can decide at which percentage you start and end with in your release ramp. Before the start date we will serve the initial percentage and afterwards, we will serve the end percentage. See progressive rollout to have more info on how to use it. |
disable (optional) | Set to Default: |
variation
, percentage
and progressiveRollout
are optional but you must have at least one of the three.
If you have more than one field we will use the first one in the order
progressiveRollout
> percentage
> variation
.
Query format
The rule format is based on the nikunjy/rules
library.
All the operations can be written in capitalized or lowercase characters (ex: eq
or EQ
can be used).
Logical Operations supported are AND
& OR
.
Compare Expression and their definitions (a|b
means you can use one of either a
or b
):
Operator | Description |
---|---|
eq , == | equals to |
ne , != | not equals to |
lt , < | less than |
gt , > | greater than |
le , <= | less than equal to |
ge , >= | greater than equal to |
co | contains |
sw | starts with |
ew | ends with |
in | in a list |
pr | present |
not | not of a logical expression |
Examples
-
Select a specific user:
key eq "example@example.com"
-
Select all identified users:
anonymous ne true
-
Select a user with a custom property:
userId eq "12345"
-
Select on multiple criteria: All users with ids finishing by
@test.com
that have the rolebackend engineer
in thepro
environment for the companygo-feature-flag
(key ew "@test.com") and (role eq "backend engineer") and (env eq "pro") and (company eq "go-feature-flag")
Environments
When you initialise go-feature-flag
you can set an environment for the instance of this SDK.
ffclient.Init(ffclient.Config{
// ...
Environment: "prod",
// ...
})
When an environment is set, it adds a new field in your user called env
that you can use in your queries.
It means that you can decide to activate a flag only for some environment.
Example of flag configuration based on the environment:
my-flag:
variations:
A: "A"
B: "B"
C: "C"
targeting:
- name: Target pre environment
query: env eq "pre"
variation: A
- name: Target pro environment
query: env eq "pro"
variation: B
defaultRule:
variation: C
Get the rule name in the metadata
When you use a rule in your targeting, you can get the name of the rule in the metadata of the variation.
The information on what rule has been used to serve the variation is available in the metadata of the variation in the field called evaluatedRuleName
.
If you are interested about this information, you have to name your rules by adding the field name
in your rule. This name will be extract and added in the evaluatedRuleName
field of the metadata.