{% extends "base.html" %} {% block title %}Peer health{% endblock %} {% block head %} {{ super() if super }} {% endblock %} {% block content %}

Peer health

Federation-hub liveness lens. Heartbeats arrive over HTTP from registered peers; probes are outbound SYSTAT round-trips initiated by this hub.
{% if not is_hub %}
This install is not configured as a federation hub (REGISTRY_MODE_ENABLED=false). Only the designated hub probes peers and shows liveness here.
{% elif not rows %}
No registered peers yet. Peers POST to /registry/api/v1/register to join — share that URL.
{% else %}
{% for r in rows %} {% endfor %}
HostNameSysop Listed HeartbeatProbeFails Action
{{ r.host }} {{ r.name }} {{ r.sysop or '—' }} {% if r.is_listed %} yes {% elif r.is_approved and r.is_verified %} paused {% else %} no {% endif %} {{ r.last_heartbeat_str }} {% if r.last_probe_ok %} {{ r.last_probe_str }} {% else %} {{ r.last_probe_str }} {% endif %} {% if r.failures and r.failures > 0 %} {{ r.failures }} {% else %} 0 {% endif %}
{% endif %}
{% endblock %}