{% extends "base.html" %} {% block title %}Nodes | Suvra{% endblock %} {% block content %}

Node Registry

Distributed enforcement nodes registered with the control plane.

{% if message %}

{{ message }}

{% endif %} {% if error_message %}

{{ error_message }}

{% endif %}

Registered Nodes

{{ nodes|length }} total
{% for node in nodes %} {% else %} {% endfor %}
Node ID Hostname Suvra Version Region Health Status Last Seen Agents Actions
{{ node.node_id }} {{ node.hostname }} {{ node.version }} {{ node.region }} {{ node.health_status }} {{ node.status }} {{ node.last_seen_at }} {{ node.linked_agents_display }}
No enforcement nodes registered yet. Nodes register automatically when started with suvra node serve.
{% endblock %}