{% extends "base.html" %} {% block title %}Workers - Control Plane{% endblock %} {% block content %}
| 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 | ||||||