Filters let you narrow down data to specific segments. Trodo provides a visual query builder with AND/OR logic and type-specific operators for precise filtering.
# Exact valuesuccessful_runs equal 0 # Never completed a run# Comparisonsseat_count greater_than 10 # Larger workspacesduration_seconds less_than 5 # Very fast runs# Range filteringmrr_usd between 100 and 10000 # Mid-market accounts# Existence checkstrial_end_date is_numeric
# Relative time filterstimestamp last 30 days # Last month's activitytimestamp last 24 hours # Today's eventscreated_at not_in_the_last 90 days # Older users only# Date rangetimestamp between "2024-01-01" and "2024-01-31"timestamp not_between "2024-12-24" and "2024-12-26" # Exclude holidays# Specific datetimestamp on "2024-01-15" # Single daytimestamp not_on "2024-01-01" # Exclude New Year# Before/aftertimestamp before "2024-06-01" # Before Junetimestamp since "2024-01-01" # This year onlyfirst_seen before_the_last 365 days # Users over a year old# Future dates (for expiry, subscription end, etc.)subscription_end in_the_next 30 days # Expiring soon
# Any integration is slack OR notionenabled_integrations any_in_list where item is "slack" OR item is "notion"# Feature flag prefixfeature_flags any_in_list where item contains "beta_"# All tags must be from approved listtags all_in_list where item is "verified" OR item is "premium"
# Any invoice line over $1000invoice_line_amounts any_in_list where item greater_than 1000# Seat counts per workspace all above zeroworkspace_seats all_in_list where item greater_than 0
Events where:├── event_name is "agent_run_completed"├── AND outcome is "success"├── AND duration_seconds greater_than 10└── AND timestamp last 7 days→ Successful runs taking more than 10s in the last week
Events where:├── event_name is "agent_run_completed"└── AND ( ├── workflow_id is "weekly_report" └── OR workflow_id is "crm_sync")└── AND ( ├── duration_seconds greater_than 60 └── OR plan is "enterprise")→ Long-running or enterprise runs for key workflows
✅ For exact match: is / equal✅ For ranges: between / greater_than✅ For text search: contains❌ Using contains for exact values❌ Using is for partial matches