{% extends "base.html" %} {% block title %}Scheduler runs — {{ config.INSTANCE_NAME }}{% endblock %} {% block content %}
{% set page_hero_eyebrow = "Server" %} {% set page_hero_title = "Scheduler runs" %} {% set page_hero_subtitle = "Recent extractor + materialized + cache-warmup runs from the scheduler." %} {% include "_page_hero.html" %}
{% if rows %} {% for r in rows %} {% endfor %}
When Action Resource Duration Result / params
{{ r.timestamp.strftime("%Y-%m-%d %H:%M:%S") if r.timestamp else "" }} {{ r.action }} {{ r.resource or "" }} {% if r.duration_ms is not none %}{{ r.duration_ms }} ms{% endif %} {{ r.params or r.result or "" }}
{% else %}
No scheduler runs in audit_log yet. The scheduler may not be authenticated — check SCHEDULER_API_TOKEN.
{% endif %}
{% endblock %}