{% extends "base.html" %} {% block title %}Runs{% endblock %} {% block content %} {% for run in runs %} {% else %} {% endfor %}
Run ID Function Started Duration Spans Status
{{ run.id[:8] }}… {{ run.name }} {{ run.started_at.strftime('%H:%M:%S') }} {{ run.duration_ms }}ms {{ run.span_count }} {% if run.status == 'ok' %} ok {% elif run.status == 'error' %} error {% else %} running {% endif %}
No runs yet — decorate a function with @trace and run it.
{% endblock %}