{% extends "base.html" %} {% block title %}Job Details: {{ job.id }} - Control Plane{% endblock %} {% block content %}
{% if job.status == 'failed' %} Failed jobs {% elif job.status == 'scheduled' %} Scheduled jobs {% elif job.status == 'blocked' %} Blocked jobs {% elif job.status == 'processing' %} In Progress jobs {% elif job.status == 'finished' %} Finished jobs {% else %} Queue: {{ job.queue_name }} {% endif %} / {{ job.class_name }} #{{ job.id }}

{{ job.class_name }}

ID: {{ job.id }}

{% if job.status == 'failed' %}
{% elif job.status == 'scheduled' %}
{% elif job.status == 'blocked' %}
{% endif %}

Basic Information

Status
{{ job.status | title }}
Queue
{{ job.queue_name }}
Priority
0
Created at
{{ job.created_at }}
{% if job.status == 'failed' and job.failed_at %}
Failed at
{{ job.failed_at }}
{% endif %} {% if job.status == 'finished' and job.finished_at %}
Finished at
{{ job.finished_at }}
{% endif %}
Attempts
1

Error Information

{% if job.error %}
{{ job.error }}
{% if job.backtrace %}
{{ job.backtrace }}
{% endif %} {% else %}
No errors reported for this job.
{% endif %}

Arguments

{% if job.arguments %}
{{ job.arguments }}
{% else %}
No arguments for this job.
{% endif %}

Job Context

{% if job.context %}
{{ job.context }}
{% else %}
{ "locale": "en", "timezone": "Asia/Shanghai", "request_id": "f7ceb5a1-8e7d-4f37-b7fd-42388127a67c" }
{% endif %}

Execution History

{% if job.execution_history %} {% for item in job.execution_history %}
Attempt #{{ item.attempt }}
{{ item.timestamp }}
{{ item.status | title }}
{% if item.error %}
{{ item.error }}
{% endif %}
{% endfor %} {% elif not exception_executions %}
No execution history available.
{% endif %} {% if exception_executions %}
exception_executions
{% for class_name, count in exception_executions %}
{{ class_name }}: {{ count }}
{% endfor %}
{% endif %}
{% endblock %}