{% extends "base.html" %} {% block title %}{{ run.name }}{% endblock %} {% block content %}
← All runs

{{ run.name }}

{% if run.status == 'ok' %} ok {% elif run.status == 'error' %} error {% else %} running {% endif %}
{{ run.id }} · {{ run.started_at.strftime('%Y-%m-%d %H:%M:%S') }} UTC · {{ run_duration_ms }}ms total {% if run.error_message %} · {{ run.error_message }} {% endif %}
0 {{ (run_duration_ms * 0.25)|round|int }}ms {{ (run_duration_ms * 0.5)|round|int }}ms {{ (run_duration_ms * 0.75)|round|int }}ms {{ run_duration_ms }}ms
{% for sp in spans %}
{{ sp.name }}
{% else %}

No spans recorded yet.

{% endfor %}

← Click a span to inspect it

{% endblock %}