{% extends "base.html" %} {% block title %}Admin: Scan Pipeline - Makenot.work{% endblock %} {% block body_attrs %} class="padded-page admin-page"{% endblock %} {% block content %} {% include "partials/site_header.html" %}
{% include "partials/admin_nav.html" %}

Scan Pipeline

Pipeline Health

last 24h
{% for card in layer_health %}
{{ card.layer }}
success {{ card.success_rate_pct }}%
error {{ card.error_rate_pct }}%
fails {{ card.fail_count }}
last clean: {{ card.last_seen }}
{% endfor %}

Active Queue

auto-refresh every 10s
{{ queue_pending }}
Pending
{{ queue_running }}
Scanning

Audit Log

View full log

Every promote, quarantine, and re-scan is recorded.

Held for Review

{{ total_held }} held {% if total_held > 0 %} {% endif %}
{% include "partials/admin_upload_entries.html" %}
Recent History — last 7 days, {{ history_total }} scan{% if history_total != 1 %}s{% endif %} {% if recent_history.is_empty() %}
No scans recorded in the last 7 days.
{% else %}
{% for row in recent_history %} {% endfor %}
Scanned File Status Layers Size SHA-256
{{ row.scanned_at }} {{ row.s3_key_short }} {{ row.scan_status }} {% for chip in row.layers %} {{ chip.layer }} {% endfor %} {{ row.size_bytes }} {{ row.sha256_short }}
{% endif %}
{% endblock %}