USAGE_ANALYTICS namespace
The USAGE_ANALYTICS namespace exposes product telemetry captured from Atlan's web application, including page views, user actions, and identity snapshots. Use it to understand how users interact with Atlan across discovery, governance, lineage, and AI features, and to measure adoption, engagement, and retention for a customer domain.
Usage analytics data is refreshed once per day. Queries reflect activity up to the most recent daily refresh, not real-time events.
Core tables
PAGES: Records every page view in Atlan. Contains the page name, tab, asset GUID, connector name, asset type, user ID, customer domain, and timestamp. Use this table to understand navigation patterns, asset browsing behavior, and connector coverage.TRACKS: Records every discrete user action in Atlan, including searches, clicks, saves, governance edits, and AI interactions. Contains the event name, user ID, and timestamp. Use this table to measure feature engagement and specific interaction patterns.USERS: Identity snapshots for Atlan users. Contains user ID, email, username, role, license type, job role, and account creation timestamp. Use this table to enrich activity data with user metadata.
Known limitations
USERS.created_at may be NULLThe created_at column in USAGE_ANALYTICS.USERS is currently NULL for users provisioned via SSO, SCIM, or admin invite on recent platform versions. Don't use tenant_created_at as a substitute—it represents your tenant's deployment date and is the same value for every user in your tenant.
As a workaround, use either of the following as a proxy for a user's first appearance:
RECEIVED_ATfromUSAGE_ANALYTICS.USERS: the timestamp Segment received the identity record. Closest single-column substitute forcreated_at.- First activity timestamp derived from
PAGESandTRACKS: takeMIN(timestamp)for a user across both tables to get the earliest tracked event. The User roster query already returns this as thefirst_activitycolumn.
Example queries
Use these pages for ready-to-run queries based on PAGES, TRACKS, and USERS:
- Track active users: DAU, WAU, MAU, stickiness ratio, and user roster.
- Analyze feature adoption: Connector usage, adoption matrix, engagement quadrant, weekly trends, top events, and top pages.
- Assess engagement depth: Pageviews per user, actions per session, session duration, engagement tiers, and power users.
- Measure retention: Activation funnel, churned users, reactivated users, day-N retention, funnel analysis, and monthly cohort retention.
See also
- Run usage analytics queries with Claude skills: Use pre-built Claude skills to run common usage analytics queries conversationally. This can help when you want results without writing SQL.
- Use cases: Browse Lakehouse use cases across metadata quality, lineage, glossary analysis, and usage analytics. Each use case includes ready-to-run example queries.