{% extends "base.html" %} {% block title %}DBSprout Dashboard — Run History{% endblock %} {% block content %}

Run history

Quality Preview Costs
{% if rows %}
{% for row in rows %} {% endfor %}
Run Started Engine Provider Tables Rows Duration (ms) Cost (USD)
#{{ row.id }} {{ row.started_at }} {{ row.engine }} {{ row.provider }} {{ "{:,}".format(row.total_tables) }} {{ "{:,}".format(row.total_rows) }} {{ row.duration_ms if row.duration_ms is not none else "—" }} ${{ "%.4f"|format(row.cost) }}
Page {{ pagination.page }} of {{ pagination.total_pages }} ({{ "{:,}".format(pagination.total_runs) }} runs)
{% if pagination.has_prev %} Previous {% else %} {% endif %} {% if pagination.has_next %} Next {% else %} {% endif %}
{% else %}
No runs yet. Run dbsprout generate to populate the dashboard.
{% endif %} {% endblock %}