{% extends "flower/base.html" %} {% block navbar %} {% set active_tab="tasks" %} {% include("flower/navbar.html") %} {% endblock %} {% block container %}
Name | UUID | State | args | kwargs | Result | Received | Started | Runtime | Worker | Exchange | Routing Key | Retries | Revoked | Exception | Expires | ETA |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ task.name }} | {{ task.uuid }} | {{ task.state }} | {{ task.args }} | {{ task.kwargs }} | {% if task.state == "SUCCESS" %} {{ task.result }} {% elif task.state == "FAILURE" %} {{ task.exception }} {% endif %} | {{ humanize(task.received, type='time') }} | {{ humanize(task.started, type='time') }} | {% if task.timestamp and task.started %} {{ '%.2f' % humanize(task.timestamp - task.started) }} sec {% endif %} | {{ task.worker.hostname }} | {{ task.exchange }} | {{ task.routing_key }} | {{ task.retries }} | {{ humanize(task.revoked, type='time') }} | {{ task.exception }} | {{ task.expires }} | {{ task.eta }} |