{% if not config.THEME_FONT_URL %} {% endif %} {% include '_theme.html' %} {% include '_app_header.html' %}

Data Catalog

Browse available data sources and manage your subscriptions

Core Business Data
Core business data from internal systems
{{ data_stats.total_tables or data_stats.tables }} tables · ~{{ data_stats.rows_display }} rows total {% if data_stats.last_updated %} · Synced {{ data_stats.last_updated }} {% endif %}
Always included
{% for category in catalog_data %}
{% for table in category.tables %}
{{ table.name }} {% if table.query_mode == 'remote' %} Live {% else %} Local {% endif %}
{{ table.description }}
{% if table.query_mode == 'remote' %} Queried directly from BigQuery {% elif table.last_sync %} Synced {{ table.last_sync }} {% endif %}
{{ table.rows_display }} {% if table.query_mode != 'remote' %} Profile {% endif %}
{% endfor %}
{% endfor %}
{# ── Card: Agnes Internal ───────────────────────────────────────── Renders the three system tables (agnes_sessions / agnes_telemetry / agnes_audit) in their own card so they don't pollute the Core Business Data header counters. Read-only — no profiler click, no `In stack` toggle; analysts query them via `agnes query`. #} {% if internal_card %}
Agnes Internal
System data — sessions, telemetry, audit. Also available locally for analysis.
{{ internal_card.count }} table{{ 's' if internal_card.count != 1 else '' }}
{# Plain list — no accordion, no profile, no In stack toggle. #}
{% for table in internal_card.tables %}
{{ table.id }}
{{ table.description }}
{% endfor %}
{% endif %} {% if metrics_data %} {% set metrics_total = namespace(n=0) %} {% for c in metrics_data %}{% set metrics_total.n = metrics_total.n + c.metrics|length %}{% endfor %}
Business Metrics
Standardized metric definitions with SQL examples and documentation
{{ metrics_total.n }} metrics · {{ metrics_data|length }} categories
Always included
{% if data_stats and data_stats.last_updated %}
Calculated from data synced {{ data_stats.last_updated }}
{% endif %} {% for category in metrics_data %}
{% for metric in category.metrics %}
{{ metric.display_name }}
{{ metric.description }}
{{ metric.grain }}
{% endfor %}
{% endfor %}
{% endif %}

-

Loading profile data...

{% include "_version_badge.html" %}