e446b7099e
Add an inverted uptime_style macro (low-is-bad mirror of metric_style) and color the inline ping latency (warn 100ms / crit 250ms) and 24h uptime values in the Hosts-Overview widget, which were the remaining uncolored metrics. (Uptime/SLA + Ping widgets already colored degraded values.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
52 lines
3.4 KiB
HTML
52 lines
3.4 KiB
HTML
{# Unified Hosts widget — monitor status + agent glance per host, links to the hub.
|
|
Name sits on its own line (never truncated); its data wraps beneath it, grouped
|
|
under the host. Prefer vertical growth over cramming a row. #}
|
|
{% from "_macros.html" import metric_style, uptime_style %}
|
|
{% if hosts %}
|
|
<div class="host-blocks">
|
|
{% for host in hosts %}
|
|
{% set ping = latest_pings.get(host.id) %}
|
|
{% set dns = latest_dns.get(host.id) %}
|
|
{% set ut = uptime.get(host.id, {}) %}
|
|
{% set a = agent.get(host.name, {}) %}
|
|
{% set down = host.ping_enabled and ping and ping.status.value != 'up' %}
|
|
{% set spark = cpu_sparks.get(host.name) %}
|
|
<div style="padding:0.5rem 0;border-bottom:1px solid var(--border);">
|
|
{# Line 1 — status dot + full host name (own line) + cpu trend #}
|
|
<div style="display:flex;align-items:center;gap:0.5rem;">
|
|
<span class="dot {% if down %}dot-down{% elif host.ping_enabled and ping %}dot-up{% else %}dot-dim{% endif %}"
|
|
style="flex-shrink:0;"
|
|
title="{% if not host.ping_enabled %}ping off{% elif ping %}{{ ping.status.value }}{% else %}no data{% endif %}"></span>
|
|
{% if session.user_id %}
|
|
<a href="/hosts/{{ host.id }}" style="font-weight:600;font-size:0.85rem;overflow-wrap:anywhere;">{{ host.name }}</a>
|
|
{% else %}
|
|
<span style="font-weight:600;font-size:0.85rem;overflow-wrap:anywhere;">{{ host.name }}</span>
|
|
{% endif %}
|
|
</div>
|
|
{# Line 2 — monitors + agent metrics; wraps instead of truncating #}
|
|
<div style="display:flex;flex-wrap:wrap;gap:0.25rem 0.9rem;margin-top:0.25rem;padding-left:1.1rem;
|
|
font-variant-numeric:tabular-nums;color:var(--text-muted);font-size:0.75rem;">
|
|
{% if host.ping_enabled and ping and ping.response_time_ms is not none %}
|
|
<span title="Ping latency" style="{{ metric_style(ping.response_time_ms, warn=100, crit=250) }}"><span style="color:var(--text-dim);">ping</span> {{ "%.0f"|format(ping.response_time_ms) }}ms</span>
|
|
{% endif %}
|
|
{% if ut.get('24h') is not none %}
|
|
<span title="Uptime 24h" style="{{ uptime_style(ut['24h']) }}"><span style="color:var(--text-dim);">24h</span> {{ "%.1f"|format(ut['24h']) }}%</span>
|
|
{% endif %}
|
|
{% if a %}
|
|
{% if a.get('cpu_pct') is not none %}<span title="CPU — value + last-hour trend" style="display:inline-flex;align-items:center;gap:0.3rem;{{ metric_style(a.cpu_pct) }}"><span style="color:var(--text-dim);">cpu</span> {{ "%.0f"|format(a.cpu_pct) }}%{% if spark %}<span style="line-height:0;opacity:0.85;">{{ spark | safe }}</span>{% endif %}</span>{% endif %}
|
|
{% if a.get('mem_used_pct') is not none %}<span title="Memory" style="{{ metric_style(a.mem_used_pct) }}"><span style="color:var(--text-dim);">mem</span> {{ "%.0f"|format(a.mem_used_pct) }}%</span>{% endif %}
|
|
{% if a.get('disk_root') is not none %}<span title="Root filesystem (/)" style="{{ metric_style(a.disk_root) }}"><span style="color:var(--text-dim);">disk /</span> {{ "%.0f"|format(a.disk_root) }}%</span>{% endif %}
|
|
{% if not a.fresh %}<span title="Agent data is stale" style="color:var(--yellow);">stale</span>{% endif %}
|
|
{% else %}
|
|
<span style="color:var(--text-dim);" title="No agent reporting">no agent</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="empty" style="color:var(--text-muted);font-size:0.85rem;padding:0.5rem 0;">
|
|
No hosts yet. <a href="/hosts/new">Add one.</a>
|
|
</div>
|
|
{% endif %}
|