Skip to main content

Targeting

Cortex is coming soon! This page previews the targeting functionality.
Target features to specific users, groups, or segments.

User Targeting

Enable for specific users:
flag: beta_feature
rules:
  - if user.id in [1, 2, 3]
    then: enabled

Attribute Targeting

Target by user attributes:
flag: enterprise_feature
rules:
  - if user.plan == "enterprise"
    then: enabled
  - default: disabled

Segment Targeting

Create reusable segments:
segment: beta_users
rules:
  - user.email ends_with "@brainzlab.ai"
  - user.signed_up_at < "2024-01-01"
  - user.id in [list of beta user IDs]
Use segments in flags:
flag: new_dashboard
rules:
  - if user in segment:beta_users
    then: enabled

Percentage Rollouts

Roll out to a percentage:
flag: new_checkout
rules:
  - percentage: 10%
    then: enabled
  - default: disabled
Consistent assignment ensures users always get the same experience.

Coming Soon

Join Waitlist

Get notified when Cortex launches