{% extends "base.html" %} {% block title %}Maintenance Windows — Fabled Scryer{% endblock %} {% block content %}

Maintenance Windows

← Alerts New Window

During an active window, alert rule evaluation is suppressed for the matching scope. Metrics are still recorded — only notifications are silenced.

{% if windows %}
{% for w in windows %} {% set is_active = w.start_at <= now and w.end_at >= now %} {% set is_upcoming = w.start_at > now %} {% endfor %}
Name Scope Start End Status
{{ w.name }} {% if w.scope_source is none %} All alerts {% elif w.scope_resource is none %} {{ w.scope_source }}/* {% else %} {{ w.scope_source }}/{{ w.scope_resource }} {% endif %} {{ w.start_at.strftime("%Y-%m-%d %H:%M") }} UTC {{ w.end_at.strftime("%Y-%m-%d %H:%M") }} UTC {% if is_active %} active {% elif is_upcoming %} upcoming {% else %} expired {% endif %}
{% else %}

No maintenance windows configured.

{% endif %} {% endblock %}