{% extends "layout.html" %} {% block sidebar %}{% include "cupboard/sidebar.html" %}{% endblock %} {% from "run_util.html" import display_result_code %} {% block page_title %}Queue{% endblock %} {% block body %}

Queue

{% if avoid_hosts or rate_limit_hosts %}

Restrictions

{% if avoid_hosts %} Manually avoiding hosts: {% endif %} {% if rate_limit_hosts %} Rate limiting hosts: {% endif %}
{% endif %}

Entries per bucket

{% for name, count in buckets %} {% endfor %}
Name Number of entries
{{ name }} {{ count }}

Currently processing

{% if is_admin %} {% endif %} {% for entry in processing %} {% if 'keepalive_age' in entry %} {% else %} {% endif %} {% if is_admin %} {% endif %} {% endfor %}
Package Suite Estimated
Duration
Current
Duration
Worker Logs Last PingAdmin
{{ entry['package'] }} {{ entry['suite'] }} {{ format_duration(entry['estimated_duration']) if entry['estimated_duration'] else 'unknown' }} {{ format_duration(entry['current_duration']) }} {% if entry.get('worker_link') %}{{ entry['worker'] }}{% else %}{{ entry['worker'] }}{% endif %} {% for name in entry['logfilenames'] %}{{ name }}{% if not loop.last %} {% endif %}{%endfor %}{{ format_duration(entry['keepalive_age']) }}N/A

Coming up

{% for queue_id, pkg, requestor, campaign, description, estimated_duration, last_run_id, last_run_result_code in queue %} {% endfor %}
Package Command Estimated duration Requestor Last Run
{{ pkg }} {{ description|safe }} {{ format_duration(estimated_duration) if estimated_duration else 'unknown' }} {{ requestor }} {% if last_run_id %}{{ display_result_code(last_run_result_code) }}{% endif %}
{% endblock %}