Custom events are the events you define to track actions that matter to your product beyond standard page views. While Saytics auto-tracks page views whenDocumentation Index
Fetch the complete documentation index at: https://docs.saytics.com/llms.txt
Use this file to discover all available pages before exploring further.
autoPageview is enabled, custom events capture the specific user behaviors — feature usage, conversions, lifecycle milestones — that reflect how people actually get value from your product.
Event taxonomy
An event taxonomy is a consistent naming convention applied to every event you track. Establishing one early prevents the common problem of having duplicate or ambiguous events — for example,purchase, purchase_complete, order_placed, and checkout_success all describing the same action. A well-defined taxonomy makes your data easier to query, share across teams, and maintain as your product grows.
Naming convention
Saytics recommends the “<Object> <Action>” pattern in title case. The object is the thing being acted on; the action is what happened to it.- “Report Exported” — not “export” or “exportReport”
- “Team Member Invited” — not “invite” or “team_invite_sent”
- “Subscription Upgraded” — not “upgrade_sub” or “subscriptionUpgraded”
| Good | Bad | Why |
|---|---|---|
"Report Exported" | "export" | Descriptive, title case |
"Subscription Upgraded" | "upgrade_sub" | Clear object + action |
"Comment Posted" | "new_comment_event" | No suffix needed |
Common event categories
Most products track events that fall into three broad categories. Expand each one to see recommended event names and a code example.Onboarding events
Onboarding events
Onboarding events track a user’s progress through initial setup and activation. Use them to measure where users drop off before reaching their first meaningful action.Recommended events:
"Account Created", "Profile Completed", "First Event Tracked"Engagement events
Engagement events
Engagement events track how users interact with key features after onboarding. Use them to identify your most-used functionality and understand which behaviors correlate with retention.Recommended events:
"Feature Used", "Dashboard Viewed", "Report Exported"Lifecycle events
Lifecycle events
Lifecycle events track changes to a user’s relationship with your product — starting a subscription, ending a trial, or closing their account. Use them to measure revenue events and churn signals.Recommended events:
"Subscription Started", "Trial Ended", "Account Deleted"Event volume and limits
Saytics supports up to 1,000 unique event names per workspace. Plan your taxonomy early to avoid hitting this limit as your product grows.
"CSV Downloaded", "PDF Downloaded", and "Excel Downloaded" can often be replaced with a single "Report Exported" event that includes a format property.
Testing your events
After adding tracking calls to your app, verify they’re arriving correctly using the Live Feed in the Saytics dashboard. Navigate to Events → Live Feed to see a real-time stream of incoming events, including their properties and the user or anonymous ID they’re attributed to. Trigger the action in your app, then check the Live Feed to confirm:- The event name matches what you defined
- All expected properties are present with the correct values
- The event is attributed to the right user or session
debug: true in Saytics.init will log all SDK activity to the browser console during development.