{% extends "base.html" %} {% block title %}Workers - Control Plane{% endblock %} {% block content %}

Workers

{% for worker in workers %} {% endfor %} {% if workers | length == 0 %} {% endif %}
Worker ID Name Kind Hostname PID Last Heartbeat Status
{{ worker.id }}
{{ worker.name }}
{{ worker.kind }}
{{ worker.hostname | default(value="unknown") }}
{{ worker.pid }}
{{ worker.last_heartbeat_at }} ({{ worker.seconds_since_heartbeat }}s ago)
{% if worker.status == "alive" %} Active {% else %} Dead {% endif %}
No workers found
{% endblock %}