arr-mcp logo Updated {{ status.generated_at | replace("T", " ") | replace("Z", " UTC") }} {% if user %}
{% endif %}
{{ status.stats.containers_running }} / {{ status.stats.containers_total }}
Containers Running
{{ "%.0f"|format(status.stats.disk_max_pct) }}%
Disk Used
{% if status.stats.disk_max_pct > 75 and status.disk %} {% set warn_disks = status.disk | selectattr('used_pct', 'gt', 75) | list %} {% if warn_disks %} {% endif %} {% endif %}
{{ status.stats.alerts_count }}
Active Alerts
{% if status.stats.alerts_count > 0 and status.alerts_recent %} {% endif %}
{{ status.stats.upgrades_count }}
Upgrades Available
{% if insights %}

AI Insights

{% for insight in insights %}
{{ insight.type | replace("_", " ") | title }}
{% if insight.narrative %}

{{ insight.narrative }}

{% endif %} {% if insight.remedies %}
{% for remedy in insight.remedies %} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if status.connectivity %}
services OK
{% endif %}

Recent Alerts

{% if status.alerts_recent %} {% for a in status.alerts_recent %} {% endfor %}
RuleServiceSeverityMessageFired
{{ a.rule }} {{ a.service }} {{ a.severity }} {{ a.message }} {{ a.fired_at[:19] | replace("T", " ") }}
{% else %}
No active alerts
{% endif %}

Available Upgrades

{% if status.upgrades %} {{ status.upgrades | length }} update{{ "s" if status.upgrades | length != 1 else "" }} {% endif %}
{% if status.upgrades %} {% for u in status.upgrades %} {% endfor %}
ServiceCurrentLatestRisk
{{ u.service }} {{ u.current_version }} {{ u.latest_version }} {{ u.risk }}
{% else %}
All services up to date
{% endif %}
{% if status.disk %}

Disk Usage

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

Stacks

{% for s in status.stacks %} {% endfor %}
NameRunningStatus
{{ s.name }} {{ s.running_count }} / {{ s.container_count }} {{ s.status }}
{% endif %}
{% macro user_dots(dots) %} {%- for d in dots -%} {% if d.state == 'marked_deletion' %}×{% else %}{{ (d.username or '?')[0] | upper }}{% endif %} {%- endfor -%} {% endmacro %}