{% extends "base.html" %} {% block title %} {{ application_name }} Development Console - Task Queue Viewer{% endblock %} {% block head %} {% endblock %} {% block breadcrumbs %} Queue Viewer {% endblock %} {% block body %}

Task Queues

{% for queueBatch in queueBatches %} {% if queueBatch %}

{% if queueBatch.run_manually %} Select a push queue to run tasks manually. {% endif %}

{% if queueBatch.rate_limited %} {% endif %} {% for queue in queueBatch %} {% if queueBatch.rate_limited %} {% endif %} {% endfor %}
Queue NameMaximum Rate Bucket SizeOldest Task (UTC) Tasks in Queue
{{ queueBatch.title }}
{{ queue.name|escape }} {{ queue.rate|escape }} {{ queue.bucket_size|escape }} {% if queue.oldest_task %} {{ queue.oldest_task|escape }}
({{ queue.eta_delta|escape }}) {% else %} None {% endif %}
{{ queue.tasks_in_queue|escape }}
{% else %} This application doesn't define any {{ queueBatch.title }}. See the documentation for more. {% endif %} {% endfor %} {% endblock %}