{% extends "layout.html" %} {% block content %}
{% if record is none %}
Run not found.
{% else %}

{{ record.task_label }}

Run {{ record.run_id }}
Status {{ record.status_label }}
Source {{ record.source_label }}
Submitted {% if record.submitted_at %}{{ record.submitted_at.strftime("%Y-%m-%d %H:%M:%S") }} UTC{% else %}-{% endif %}
Finished {% if record.finished_at %}{{ record.finished_at.strftime("%Y-%m-%d %H:%M:%S") }} UTC{% else %}-{% endif %}
Duration {% if record.duration_ms is not none %}{{ record.duration_ms }} ms{% else %}-{% endif %}
Scheduler ID {{ record.scheduler_identity or "-" }}
Store / Executor {{ record.store or "-" }} / {{ record.executor or "-" }}
Coalesced Runs {{ record.coalesced_run_count }}
Task ID {{ record.task_id }}
Callable {{ record.callable_reference or "-" }}
{% if record.exception_type %}
Exception Type {{ record.exception_type }}
{% endif %} {% if record.exception_message %}
Exception Message {{ record.exception_message }}
{% endif %}
{% if record.exception %}
{{ record.exception }}
{% endif %} {% if record.traceback %}
{{ record.traceback }}
{% endif %}

Run Logs

Direct run lifecycle logs plus task logs from the run window.
{% include "logs/partials/table.html" %}
{% endif %}
{% endblock %}