{% extends "base.html" %} {% block title %}Metrics - Supavision{% endblock %} {% block content %} {% if not infra_cards %}

No metrics collected yet

Metrics are recorded after each health check. Add a resource and run a health check to see data here.

View Resources
{% endif %} {# ── Infrastructure Metrics ── #} {% if infra_cards %}

Infrastructure

Collected during health checks. Sparklines show 30-day trend.
{% for card in infra_cards %}
{% for metric in card.metrics %}
{{ metric.name | replace('_', ' ') | capitalize }}
{{ metric.display_value }} {{ metric.unit }}
{% if metric.sparkline_points %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% endblock %}