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

Run {{ run.id }}

Status: {{ run.status.value }}

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

Prefect flow run: {{ run.prefect_flow_run_id or "-" }}

Updated at: {{ run.updated_at }}

{% if prefect_ui_url %}

Open Prefect UI

{% endif %}

Nodes

{% for node_id, node in run.nodes.items() %} {% set runtime = node_runtimes[node_id] %} {% endfor %}
Task Status Waiting reason Attempt PID CWD Project workspace Sandbox Writable roots Last progress Last event Termination reason Artifacts Node dir
{{ node_id }} {{ node.status.value }} {% if node.waiting_reason %}{{ node.waiting_reason.value }}{% else %}-{% endif %} {{ node.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 node.termination_reason %} {{ node.termination_reason.value }} {% elif runtime and runtime.termination_reason %} {{ runtime.termination_reason.value }} {% else %} - {% endif %} {% for artifact in node.published %}
{{ artifact.relative_path }}
{% endfor %}
{{ node_dirs[node_id] }}
{% endblock %}