{% extends "base.html" %} {% block title %}BI Engine - Overview{% endblock %} {% block head %} {% endblock %} {% block content %}
{% include "plugins/bi/partials/bi_sidebar.html" %}

BI Engine

Analytics overview and connected applications

Dashboards
{{ stats.total_dashboards }}
{{ stats.prebuilt_count }} prebuilt {{ stats.custom_count }} custom
Active Embed Tokens
{{ stats.active_embed_tokens }}
Snapshots Today
{{ stats.snapshots_today }}
Data Sources
{{ stats.total_sources }}

Connected Apps

{% if connected_apps %}
{% for app in connected_apps %}
{{ app.app_id[:2] }}
{{ app.app_id }} Active
{{ app.dashboard_count }} dashboard{{ 's' if app.dashboard_count != 1 else '' }} · {{ app.token_count }} token{{ 's' if app.token_count != 1 else '' }}
{% if app.has_rls %} RLS {% endif %}
{% endfor %}
{% else %}

No connected apps yet

Generate embed tokens to connect external applications

{% endif %}

Query Volume (7d)

{% if recent_dashboards %}

Recent Dashboards

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}