{% extends "base.html" %} {% block title %}DBSprout Dashboard — Data Preview{% endblock %} {% block content %}

Data preview

Quality Costs History
{% if not has_run %}
No run recorded yet. Run dbsprout generate to populate this view.
{% elif not tables %}
No tables recorded for the latest run.
{% else %}
{% if selected_name and selected %}

{{ selected_name }}

Row count
{{ "{:,}".format(selected.row_count) }}
Generation (ms)
{{ selected.generation_ms }}
Rows/sec
{{ "{:,.2f}".format(selected.rows_per_sec) }}
Errors
{{ selected.errors }}
Up to {{ preview_row_limit }} sample rows are produced at generation time and live in the generated output (SQL/CSV/etc.), not in the read-only state DB — so they are not shown here. The stats above come from the latest run's telemetry.
{% elif selected_name %}
Table {{ selected_name }} is not in the latest run. Pick one from the selector above.
{% else %}
Select a table from the dropdown to view its per-table stats.
{% endif %} {% endif %} {% endblock %}