{% extends "status.html" %} {% block status_breadcrumb %}
  • Overview
  • {% endblock %} {% block status_body %} {% set right_column_width = "160px" %}

    Full job queue statistics

    The normal "Pending" stats provide info only about the normal (or "foreground") tasks, but the project maintainers can submit also the background jobs (with lower priority) that are processed only when there's enough computation power left in the Copr cloud that is not taken by normal tasks. This page provides some statistics related to the queue, mostly useful for the system administrators (for queue analysis).

    This page is cached for {{ cache_seconds }} seconds.

    All jobs

    There's crurrently {{ stats["background"].total() }} jobs.

    Sort pending tasks per ownership

    {% for owner_name, full_count in stats.owners.most_common() %} {% for stattype in ["chroots", "projects", "background"] %} {% for key, count in stats.owners_details[owner_name][stattype].most_common() %} {% endfor %} {% endfor %} {% endfor %}
    Count
    {% for stattype in ["projects", "chroots", "background"] %}

    Queue by {{ stattype }}

    {% for key, count in stats[stattype].most_common() %} {% endfor %}
    Count
    {{ key }} {{ count }}
    {% endfor %}
    {% endblock %}