{% extends "ui/_layout.html" %} {% block title %}Misses - withcache{% endblock %} {% block subnav %} {% endblock %} {% block intro %}
URLs that clients requested but withcache doesn't have downloaded. Useful for the "what's suddenly popular?" question: if a URL keeps showing up here, it's probably worth adding to the catalog. Per-row Fetch promotes the URL to a first-class catalog entry AND enqueues its download; Dismiss removes the recorded miss when the operator doesn't want it in the catalog.
{% endblock %} {% block content %}
Recorded misses
{% for r in rows %} {% endfor %} {% if not rows %} {% endif %}
URL Count First seen Last seen Action
{{ r['url'] }} {{ r['count'] }} {{ r['first_seen'] }} {{ r['last_seen'] }} {# Fetch: add the URL as a catalog entry AND enqueue the download so trio callers can see it once the bytes land. Dismiss: forget the row (op ack'd they don't want this URL in the catalog). #}
No recorded misses yet.
{% endblock %}