{% extends "base.html" %} {% block title %}Caches - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Binary Caches

Total NARs
{{ total_nars }}
Compressed
{{ total_compressed }}
Uncompressed
{{ total_uncompressed }}
{% if caches.is_empty() %}
No caches configured
Enable the global cache in config or enable a project's cache to see it here.
{% else %}
{% for c in caches %} {% endfor %}
Name Scope Status NARs Compressed Requests/hr
{{ c.name }} {{ c.scope_label }} {% if c.active %} Active {% else %} Inactive {% endif %} {{ c.nar_count }} {{ c.compressed }} {{ c.requests_per_hour }}
{% endif %} {% endblock %}