Analytics
The Analytics dashboard gives you a real-time and historical view of authentication activity, user growth, and security events across your tenant. Use it to understand usage patterns, spot anomalies, and measure the health of your identity system.
Accessing Analytics
Navigate to /t/{tenantSlug}/portal/analytics in your tenant portal.
Dashboard Overview
The main dashboard is divided into sections:
Login Activity
| Metric | Description |
|---|---|
| Total Logins | Number of successful authentications in the selected time range |
| Unique Active Users | Distinct users who logged in |
| Failed Logins | Authentication failures (wrong password, blocked account, etc.) |
| Login Success Rate | Percentage of attempts that succeeded |
User Growth
| Metric | Description |
|---|---|
| Total Users | Current total registered users |
| New Registrations | Users who registered in the time range |
| Invited Users | Users who joined via invitation |
| Pending Invitations | Invitations sent but not yet accepted |
Authentication Methods
A breakdown of which authentication methods users are using:
- Email & Password
- Social Login (by provider)
- Magic Link
- Passkeys
- Push Authentication
- Enterprise SSO (SAML / OIDC / LDAP)
Time Range Filter
All charts support a configurable time range. Select from the dropdown in the top-right:
- Last 24 hours
- Last 7 days
- Last 30 days
- Last 90 days
- Custom date range
API Access
You can pull analytics data programmatically for use in your own dashboards or reporting:
# Dashboard summary
curl https://your-domain.com/t/{tenantSlug}/api/v1/admin/analytics/dashboard \
-H "Authorization: Bearer {admin_token}"
# Login activity
curl "https://your-domain.com/t/{tenantSlug}/api/v1/admin/analytics/logins?from=2024-01-01&to=2024-01-31" \
-H "Authorization: Bearer {admin_token}"
# User stats
curl https://your-domain.com/t/{tenantSlug}/api/v1/admin/analytics/users \
-H "Authorization: Bearer {admin_token}"
Related
- Audit Logs — per-event audit trail
- Webhooks — stream events to your own analytics stack
- Observability Integrations — export metrics to Datadog, Axiom, Honeycomb