Group Rule
The Group rule lets you define the exact, static, logic you want to drive a particular element. It’s probably the most commonly used rule both because of its usefulness and simplicity.

- Dimension Element = Support
IF (Service = "OCBPremiumSupport") THEN Dimension Element = "Support"
Micro-Learning
-- Duration: 2 Minutes
-- Topics Covered:
-- Group Rule Syntax
-- Example Rule
Examples of where customers might leverage Group rules:
- You tag your single tenant infrastructure with a Tenant ID but users want to see the Tenant names. You might create a dimension called Tenant Name where you have a number of group rules mapping the name to the ID

IF (Tag:TenantID = "13801") THEN Tenant Name = "Acme"
- You have an environment tag that has a lot of messy values in it. You want to clean this up in a dimension called Environment

IF (Tag:env contains "prod" OR Tag:env contains "prd") THEN Environment = "Production"
Updated 30 days ago
What’s Next