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

Trends

{% if t.empty %}

No finding history yet. Run afterlife analyze over time (or on a schedule with afterlife watch) and this page fills in as findings appear and resolve.

Nothing to chart yet.
{% else %}

Finding history from {{ t.range_start }} to {{ t.range_end }}.

{{ t.open_now }}Open now
{{ t.total_ever }}Seen ever
{{ t.resolved_total }}Resolved
{{ t.median_ttr_days if t.median_ttr_days is not none else "—" }}Median days to resolve

Open findings over time

{% if t.max_open > 0 %}
{{ t.buckets[0].label }}{{ t.buckets[-1].label }}
critical high medium low
{% else %}
No open findings in the recorded window.
{% endif %}

New vs resolved per period

{% if t.max_flow > 0 %}
{{ t.buckets[0].label }}{{ t.buckets[-1].label }}
new resolved
{% else %}
No finding activity in the recorded window.
{% endif %} {% endif %} {% endblock %}