{% extends 'base.html' %} {% block body %} {% block header %} {% load static from staticfiles %}

Workers

{% endblock %} {% if error %}

There was an error: {{ error }}

{% endif %}
{% if summary %}
Num. of Actor without Workers Busy Workers Error Workers Ready Workers Requested Workers Total Workers Action
{{ summary.actorsNoWorkers }} {{ summary.busyWorkers }} {{ summary.errorWorkers }} {{ summary.readyWorkers }} {{ summary.requestedWorkers }} {{ summary.totalWorkers }} {{ summary.action }}
{% csrf_token %}
{% endif %} {% if workers %}
{% for worker in workers %} {% endfor %}
Tenant Actor ID Worker ID Worker Status Actor Image Actor Name Last Execution Time Last Health Check Action
{{ worker.tenant }} {{ worker.actorId }} {{ worker.id }} {{ worker.status }} {{ worker.image }} {{ worker.actorName }} {{ worker.lastExecutionTime }} {{ worker.lastHealthCheckTime }} {{ worker.action }}
{% csrf_token %}
{% else %}
Num. of Actor without Workers Busy Workers Error Workers Ready Workers Requested Workers Total Workers Action
0 0 0 0 0 0 No Workers
{% endif %} {% endblock %}