diff --git a/docs/cloud/features/collaboration-and-communication/catalog.mdx b/docs/cloud/features/collaboration-and-communication/catalog.mdx index 069e876d2..d56e9c48d 100644 --- a/docs/cloud/features/collaboration-and-communication/catalog.mdx +++ b/docs/cloud/features/collaboration-and-communication/catalog.mdx @@ -50,6 +50,9 @@ You can mark assets as critical directly in the catalog to highlight their impor View upstream and downstream dependencies for each dataset, and export the full dependency list as a CSV for further analysis or documentation. Lineage export +### Table usage +See how often each table is queried in production over a rolling 30-day window, compare usage at a glance from the **Metadata** tab, and hover for percentile rank, query volume, and unique users. Usage is also available as context to Elementary’s AI agents. Read more in [Table usage](/cloud/features/table-usage). + ### AI Agents for Discovery and Governance Elementary includes two agents that use the catalog to support your team: - The [Catalog agent](/cloud/ai-agents/catalog-agent) helps users find relevant models, columns, or metrics using natural language. This is especially helpful for new team members or business users who are less familiar with your dbt structure. diff --git a/docs/cloud/features/table-usage.mdx b/docs/cloud/features/table-usage.mdx new file mode 100644 index 000000000..e596679c7 --- /dev/null +++ b/docs/cloud/features/table-usage.mdx @@ -0,0 +1,38 @@ +--- +title: "Table usage" +sidebarTitle: "Table usage" +--- + +Table usage shows how your data assets are **actually consumed** in the warehouse—how often they are queried and by who—based on **query activity** over a **rolling 30-day window**. That visibility helps you **prioritize incidents and data quality** on the assets that drive the most load and downstream impact, and get a **clearer end-to-end view** of what is happening in production. + +## Usage in the Catalog + +Open the **Catalog** and select the **Metadata** tab. Table assets include a **Usage** column with a **usage indicator** so you can compare relative activity at a glance. + +Catalog Metadata tab showing the Usage column with usage indicators and a tooltip with percentile, date range, query count, and unique users + +### Tooltip details + +Hover the usage indicator for a specific asset to open a tooltip with: + +- **Percentile rank** — How this table’s query volume ranks against every other table. For example, **72nd percentile** means its query volume is **greater than or equal to** that of **72% of tables** in your environment. +- **Reporting period** — The exact **30-day** date range the metrics are based on (for example, March 15 – April 14, 2026). +- **Query count** — Total queries against the table in that period. +- **Unique users** — Distinct users who ran queries against the table in that period. + +## AI agents + +The same usage signals are available as **context** to Elementary **AI agents**, so you can ask natural-language questions that depend on real consumption—for example, **“Show me the top 5 most used tables.”** + +AI assistant response with a ranked list of the most queried tables + +## Related + +- [Data Catalog](/cloud/features/collaboration-and-communication/catalog) — Overview of catalog navigation, metadata editing, and collaboration workflows. +- [AI agents](/cloud/ai-agents/overview) — How Elementary’s agents use catalog and observability context. diff --git a/docs/docs.json b/docs/docs.json index 3bd2ec8dc..a9acb70c5 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -157,6 +157,7 @@ "cloud/features/roles-and-permissions", "cloud/features/multi-env", "cloud/features/ci", + "cloud/features/table-usage", { "group": "Audit Logs", "pages": [ @@ -700,6 +701,10 @@ { "source": "/features/data-observability-dashboard", "destination": "/cloud/features/collaboration-and-communication/data-observability-dashboard" + }, + { + "source": "/cloud/features/collaboration-and-communication/table-usage", + "destination": "/cloud/features/table-usage" } ] } diff --git a/docs/pics/cloud/catalog/table-usage-ai-agent-report.png b/docs/pics/cloud/catalog/table-usage-ai-agent-report.png new file mode 100644 index 000000000..959107075 Binary files /dev/null and b/docs/pics/cloud/catalog/table-usage-ai-agent-report.png differ diff --git a/docs/pics/cloud/catalog/table-usage-metadata-column.png b/docs/pics/cloud/catalog/table-usage-metadata-column.png new file mode 100644 index 000000000..b946c3e45 Binary files /dev/null and b/docs/pics/cloud/catalog/table-usage-metadata-column.png differ