{% extends "base.html" %} {% block content %}
Monitor background loader executions, check exit status codes, and view run logs.
| ID | Command | PID | Started At | Finished At | Status | Logs |
|---|---|---|---|---|---|---|
#{{ h.history_id }} |
{{ h.command }} |
{% if h.pid %}{{ h.pid|stringformat:"d" }}{% else %}-{% endif %} | {{ h.created_at|date:"Y-m-d H:i:s" }} | {% if h.finished_at %}{{ h.finished_at|date:"Y-m-d H:i:s" }}{% else %}-{% endif %} | {% if h.status == "PENDING" %} Waiting {% elif h.status == "RUNNING" %} Running {% elif h.status == "SUCCESS" %} Success {% elif h.status == "FAILURE" %} Failed {% elif h.status == "DEAD" %} Dead {% else %} {{ h.status }} {% endif %} | |
| No loader history records found. | ||||||