{% extends "layout.html" %} {% block content %}
Scheduler
{% if scheduler_running %}Running{% else %}Stopped{% endif %}
State: {{ scheduler_state|default("unknown") }} ยท {{ timezone }}
Total Tasks
{{ total_tasks }}
{{ scheduled_tasks }} scheduled, {{ paused_tasks }} paused
Scheduled
{{ scheduled_tasks }}
Eligible for normal trigger execution
Stores / Executors
{{ store_count }} / {{ executor_count }}
Configured runtime resources
Paused
{{ paused_tasks }}
Will not run until resumed
Pending
{{ pending_tasks }}
Waiting for scheduler persistence
Timezone
{{ timezone }}
Used for trigger calculations
Runs
{{ run_summary.total }}
{{ run_summary.succeeded }} succeeded, {{ run_summary.failed }} failed

Recent Tasks

Runtime inspection snapshots from the active scheduler
View Tasks
{% if not tasks or tasks|length == 0 %} {% else %} {% for t in tasks[:10] %} {% endfor %} {% endif %}
Task Trigger Next Run Last Run Store / Executor Status
No tasks yet.
{{ t.id }}
{{ t.name or '-' }}
{{ t.callable_reference or t.callable_name or '-' }}
{{ t.trigger_alias or t.trigger }}
{{ t.trigger_description or '-' }}
{{ t.next_run_time or '-' }} {% if t.last_run %} {{ t.last_run.finished_at or t.last_run.submitted_at }}
{{ t.last_run.status_label }}
{% else %} Never {% endif %}
{{ t.store or '-' }}
{{ t.executor or '-' }}
{% if t.state == "scheduled" %} Scheduled {% elif t.state == "pending" %} Pending {% else %} Paused {% endif %}

Recent Runs

Latest task execution records captured from scheduler events
View History
{% with rows=recent_runs %} {% include "history/partials/table.html" %} {% endwith %}
{% endblock %}