{% extends "base.html" %} {% from '_glossary.html' import cron_friendly %} {% block title %}Schedules - Supavision{% endblock %} {% block content %} {# ── Scheduler Status Bar ── #}
{% if scheduler_status.running %} Scheduler running {% else %} Scheduler stopped {% endif %} {% if scheduler_status.ticks %} {{ scheduler_status.ticks }} ticks {% endif %} {% if scheduler_status.last_tick_at %} Last tick: just now {% endif %}
{% if schedule_rows %}

Discovery maps your infrastructure initially. Health checks monitor it on a recurring schedule. Edit a resource to set or change schedules.

{% for row in schedule_rows %} {% endfor %}
Resource Discovery Schedule Health Check Schedule Next Run Status
{{ row.resource_name }} {% if row.discovery_cron %} {{ cron_friendly(row.discovery_cron) }} {{ row.discovery_cron }} {% else %} {% endif %} {% if row.health_cron %} {{ cron_friendly(row.health_cron) }} {{ row.health_cron }} {% else %} {% endif %} {% if row.next_run %} {{ row.next_run }} {% else %} {% endif %}
{% else %}

No schedules configured

Set cron schedules when editing a resource to automate monitoring.

View Resources
{% endif %} {% endblock %}