Analytics
The Analytics dashboard shows real-time and historical views of authentication activity, user growth, and security events for your organization.
Accessing Analytics
Navigate to /orgs/{orgId}/portal/analytics in your organization 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/orgs/{orgId}/api/v1/admin/analytics/dashboard \
-H "Authorization: Bearer {admin_token}"
# Login activity
curl "https://your-domain.com/orgs/{orgId}/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/orgs/{orgId}/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