{% extends "base.html" %} {% load i18n %} {% block content %}
{% trans "Workers available for new connections" %}
{{stats.workers_accepting_connections}} {% trans "of" %} {{stats.workers_total}}

{% trans "Workers busy" %}
{{stats.workers_busy}} {% trans "of" %} {{stats.workers_total}}

{% trans "Threads busy" %}
{{stats.threads_busy}} {% trans "of" %} {{stats.threads_total}}

Table
Aspect Count
{% trans "Total workers" %} {{stats.workers_total}}
{% trans "Busy workers" %} {{stats.workers_busy}}
{% trans "Workers accepting connections" %} {{stats.workers_accepting_connections}}
{% trans "Total threads" %} {{stats.threads_total}}
{% trans "Busy threads" %} {{stats.threads_busy}}
{% trans "Total processed requests" %} {{stats.requests_processed}}
{% endblock content %}