{% extends "base.html" %} {% block title %}Tasks - Flowrra{% endblock %} {% block content %}
Task Execution History
{{ registered_tasks | length }} task(s) registered
| Task Name | Type | Max Retries | Retry Delay |
|---|---|---|---|
| {{ task.name }} | {% if task.cpu_bound %} CPU-bound {% else %} IO-bound {% endif %} | {{ task.max_retries }} | {{ task.retry_delay }}s |
{{ tasks | length }} task(s) found
| Task ID | Task Name | Status | Created | Started | Completed | Duration | Retries |
|---|---|---|---|---|---|---|---|
{{ task.id[:8] }} |
{{ task.name }} | {{ task.status }} | {{ task.created_at | format_datetime }} | {{ task.started_at | format_datetime }} | {{ task.completed_at | format_datetime }} | {% if task.started_at and task.completed_at %} {{ (task.completed_at - task.started_at).total_seconds() | format_duration }} {% else %} - {% endif %} | {{ task.retry_count }} |
| Error: | |||||||
No tasks found{% if status_filter %} with status "{{ status_filter }}"{% endif %}
GET
/api/tasks
- List all registered tasks
GET
/api/tasks/{name}
- Get task info