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 %}
Exception
{{ record.exception }}
{% endif %}
{% if record.traceback %}
Traceback
{{ record.traceback }}
{% endif %}