arr-mcp logo Last updated: {{ status.generated_at | replace("T", " ") | replace("Z", " UTC") }}
{% if status.disk %}

Disk Usage

{% for d in status.disk %} {% endfor %}
{{ d.path }}
{{ d.used_pct }}% {{ d.used_gb }} / {{ d.total_gb }} GB
{% endif %}

Containers

{% if status.containers %} {% for c in status.containers %} {% endfor %}
NameImageStatusHealthUptime
{{ c.name | service_icon }} {{ c.name }} {{ c.image }} {{ c.status }} {{ c.health or "—" }} {{ c.uptime_seconds | uptime if c.uptime_seconds else "—" }}
{% else %}

No containers found.

{% endif %}
{% if status.stacks %}

Stacks

{% for s in status.stacks %} {% endfor %}
NameRunningStatus
{{ s.name }} {{ s.running_count }} / {{ s.container_count }} {{ s.status }}
{% endif %}