{% extends "base.html" %} {% block title %}Afterlife: Scan history{% endblock %} {% block content %}

Scan history

Last {{ runs|length }} run(s) across all collectors.

{% if runs %} {% for r in runs %} {% endfor %}
Started (UTC) Source Records Status Duration
{{ r.started_at[:19] }} {{ r.source }} {% if r.records_collected is not none %} {{ r.records_collected }} {% else %} - {% endif %} {% if r.error %} failed {{ r.error[:80] }}{% if r.error|length > 80 %}…{% endif %} {% elif r.finished_at %} ok {% else %} in progress {% endif %} {% if r.finished_at and r.started_at %} {{ ((r.finished_at[11:19]|replace(":", "")|int) - (r.started_at[11:19]|replace(":", "")|int))|abs }}s {% else %} - {% endif %}
{% else %}
No scan runs recorded yet. Run afterlife scan ... to see history.
{% endif %} {% endblock %}