{% extends "base.html" %} {% block title %}Live Activity - Supavision{% endblock %} {% block content %} {# ── Active Jobs Panel ── #}

Active Jobs shows currently running checks. Log Stream shows real-time output from all jobs.

Active Jobs {{ active_items | length }}

{% if active_items %} {% for item in active_items %} {% endfor %}
TypeResourceStatusElapsed
{{ item.type }} {{ item.resource }} {{ item.status }} {{ item.elapsed or '—' }}
{% else %}

System is idle

No active jobs. Run a health check from a resource page to see live output here.

{% endif %}
{# ── Log Stream Panel ── #}

Log Stream


  
{% endblock %}