{% extends "base.html" %} {% block title %}Health — SimpleAudit Studio{% endblock %} {% block content %}

System Health

…

Components

{% for name, comp in health.components.items %}
{{ name }}

{{ comp.detail|default:"" }}

{% if comp.latency_ms is not None %}{{ comp.latency_ms }} ms{% endif %}

{% if name == "engine" %}

{{ comp.version|default:"—" }}{% if comp.commit %} · {{ comp.commit|slice:":8" }}{% endif %}

{% endif %} {% if name == "model_endpoints" %}
{% for group in comp.groups %}

{{ group.name }} · {{ group.provider }}

    {% for m in group.models %}
  • {{ m.display_name }} {{ m.status }}
  • {% endfor %}
{% endfor %}
{% endif %}
{% endfor %}

Resources & Throughput

Memory

—

Disk

—

CPU Load

—

Audit Queue
—

Active

—

Queued

—

Done

—

Failed

{% endblock %}