Skip to main content

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

MetricDescription
Total LoginsNumber of successful authentications in the selected time range
Unique Active UsersDistinct users who logged in
Failed LoginsAuthentication failures (wrong password, blocked account, etc.)
Login Success RatePercentage of attempts that succeeded

User Growth

MetricDescription
Total UsersCurrent total registered users
New RegistrationsUsers who registered in the time range
Invited UsersUsers who joined via invitation
Pending InvitationsInvitations 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}"