{% extends "base.html" %} {% block content %}

Run {{ run.id }}

Status: {{ run.status.value }}

Roots: {{ run.roots | join(", ") }}

Updated at: {{ run.updated_at }}

Instances

{% for instance_id, instance in run.instances.items() %} {% set runtime = instance_runtimes[instance_id] %} {% endfor %}
Instance Task Input scope Status Waiting reason Attempt PID CWD Project workspace Sandbox Writable roots Last progress Last event Termination reason Failure kind Failure summary Resume hint Artifacts Instance dir
{{ instance_id }} {{ instance.task_id }} {{ instance.input_scope_id }} {{ instance.status.value }} {% if instance.waiting_reason %}{{ instance.waiting_reason.value }}{% else %}-{% endif %} {{ instance.attempt }} {% if runtime and runtime.pid %}{{ runtime.pid }}{% else %}-{% endif %} {% if runtime %}{{ runtime.cwd }}{% else %}-{% endif %} {% if runtime and runtime.project_workspace_dir %}{{ runtime.project_workspace_dir }}{% else %}-{% endif %} {% if runtime and runtime.sandbox %}{{ runtime.sandbox }}{% else %}-{% endif %} {% if runtime and runtime.writable_roots %} {% for writable_root in runtime.writable_roots %}
{{ writable_root }}
{% endfor %} {% else %} - {% endif %}
{% if runtime and runtime.last_progress_at %}{{ runtime.last_progress_at }}{% else %}-{% endif %} {% if runtime and runtime.last_event_summary %}{{ runtime.last_event_summary }}{% else %}-{% endif %} {% if instance.termination_reason %} {{ instance.termination_reason.value }} {% elif runtime and runtime.termination_reason %} {{ runtime.termination_reason.value }} {% else %} - {% endif %} {% if instance.failure_kind %} {{ instance.failure_kind.value }} {% elif runtime and runtime.failure_kind %} {{ runtime.failure_kind.value }} {% else %} - {% endif %} {% if instance.failure_summary %} {{ instance.failure_summary }} {% elif runtime and runtime.failure_summary %} {{ runtime.failure_summary }} {% else %} - {% endif %} {% if instance.resume_recommended %}resume recommended{% else %}-{% endif %} {% for artifact in instance.published %}
{{ artifact.relative_path }}
{% endfor %}
{{ instance_dirs[instance_id] }}
{% endblock %}