Appearance
Filters
Filters determine which events are processed by the feature. They support various operators and can be nested.
Basic Filter Structure
json
{
"field": "event_name",
"operator": "equals",
"value": "login"
}Supported Operators
equals- Exact matchin- Value in arraynot_equals- Not equal tocontains- String contains substringgreater_than- Numeric comparisonless_than- Numeric comparison
Filter Examples
Single Event Filter:
json
{
"field": "event_name",
"operator": "equals",
"value": "login"
}