{% extends "base.html" %}{% from "_macros.html" import run_pill %} {% block title %}{{ r.name }}{% endblock %} {% block main %}
{{ r.description }}
peer {{ r.peer }} · run {{ r.run_id }} · {{ '%.1f'|format(r.duration_ms / 1000) }}s · {{ r.started }} ·
traffic for this run
| # | Step | Status | Details |
|---|---|---|---|
| {{ s.index }} | {{ s.name }} {{ s.kind }} · {{ s.duration_ms|int }} ms | {{ run_pill(s.status) }} | {% if s.message %}{{ s.message }}{% endif %}
{% for c in s.checks %}{{ '✓' if c.ok else '✗' }} {{ c.check }} → {{ c.detail|string|truncate(240) }} {% endfor %}
{% if s.traffic_ids %}traffic: {% for t in s.traffic_ids[:30] %}{{ t }} {% endfor %} {% endif %}
|