{% extends "admin/dj_celery_panel/base.html" %} {% load i18n admin_urls static %} {% block content %} {% include "admin/dj_celery_panel/_tabs.html" %} {% include "admin/dj_celery_panel/_backend_info.html" %} {% if worker %}
| {% trans 'Worker Name' %} | {{ worker.name }} |
|---|---|
| {% trans 'Status' %} | {{ worker.status|capfirst }} |
| {% trans 'Hostname' %} | {{ worker.hostname }} |
| {% trans 'Process ID (PID)' %} | {{ worker.pid }} |
| {% trans 'Pool Implementation' %} | {{ worker.pool }} |
| {% trans 'Concurrency' %} | {{ worker.concurrency }} |
| {% trans 'Prefetch Count' %} | {{ worker.prefetch_count }} |
| {% trans 'Total Tasks Executed' %} | {{ worker.total_tasks_executed }} |
| {% trans 'Active Tasks' %} |
{% if worker.active_tasks %}
{{ worker.active_tasks_count }}
{% trans 'Show active tasks' %}
|
| {% trans 'Reserved Tasks' %} |
{% if worker.reserved_tasks %}
{{ worker.reserved_tasks_count }}
{% trans 'Show reserved tasks' %}
|
| {% trans 'Scheduled Tasks' %} |
{% if worker.scheduled_tasks %}
{{ worker.scheduled_tasks_count }}
{% trans 'Show scheduled tasks' %}
|
| {% trans 'Registered Tasks' %} |
{% if worker.registered_tasks %}
{{ worker.registered_tasks|length }} {% trans 'tasks' %}
{% trans 'Show registered tasks' %}
|
| {% trans 'Active Queues' %} |
{% if worker.active_queues %}
|
| {% trans 'Worker Processes' %} |
{% trans 'Show process list' %} ({{ worker.processes|length }})
|
| {% trans 'Resource Usage' %} |
{% trans 'Show resource usage' %}
|
| {% trans 'Broker Info' %} |
{% trans 'Show broker information' %}
|