{% extends "layout.html" %}
{% block content %}
Overview
{% for card in cards %}{% endfor %}
{% if queue_rows %}
| Queue | Ready | Latency | |
{% for q in queue_rows %}
| {{ q.name }}{% if q.paused %} {{ icons.pause }}paused{% endif %} |
{{ q.size | num }} |
|
|
{% endfor %}
{% else %}
{% endif %}
{% if processes %}
| Process | Host | Heartbeat |
{% for p in processes %}
| {{ p.kind | string | capitalize }} {{ p.name }} |
{{ p.hostname }} ยท {{ p.pid }} |
{{ p.last_heartbeat_at | reltime }}{% if not p.alive %}stale{% endif %} |
{% endfor %}
{% else %}
{% endif %}
{% if recurring %}
| Key | Schedule | Target | Queue |
{% for r in recurring %}
| {{ r.key }} | | {{ r.class_name or r.command }} | {{ r.queue_name }} |
{% endfor %}
{% endif %}
{% endblock %}