{% extends "base.html" %} {% block title %}{{ view.run_id }} · HivePlane{% endblock %} {% block content %} {% if ok %}{% endif %} {% if error %}{% endif %}

Run {{ view.run_id }}

Workload
{{ view.workload }}
State
{{ view.state }}
Context
{{ view.context or "—" }}
Model identity
{{ view.model_identity or "—" }}
Cost
${{ "%.4f"|format(view.cost_usd) }}
Sandbox
{{ "yes" if view.sandbox else "no" }}{% if view.sandbox_id %} ({{ view.sandbox_id }}){% endif %}
Certification
{{ view.certification_status }}
Trace
{{ view.trace_id or "—" }}

Intervene

{% if view.state in ("queued", "running") %}
{% endif %} {% if view.state == "paused" %}
{% endif %} {% if view.state not in ("completed", "failed", "cancelled") %}
{% endif %}

Execution story

{% if view.entries %} {% else %}

No events recorded for this run.

{% endif %} {% endblock %}