{% extends "base.html" %} {% block title %}Sessions - Supavision{% endblock %} {% block content %}
{% if status_filter or run_type_filter %} Clear {% endif %}
{% if run_rows %}
{% for row in run_rows %} {% endfor %}
Resource Type Status Started Duration Tokens
{{ row.resource_name }} {{ row.run_type | replace('_', ' ') }} {{ row.status }} {{ row.started_at }} {{ row.duration or "—" }} {{ "{:,}".format(row.tokens) if row.tokens else "—" }} {% if row.status == "running" %} Watch {% else %} View {% endif %}
{% else %}

No infrastructure runs

Runs appear here after you run health checks or discoveries on your resources.

View Resources
{% endif %} {% endblock %}