{% extends "base.html" %} {% block title %}Edit {{ resource.name }} - Supavision{% endblock %} {% block content %} {# ── General Settings ── #}

General

{% if resource_types[resource.resource_type].connection == 'ssh' %}
{% endif %}
{# ── Schedule ── #}

Schedule

How often Supavision automatically checks this resource.

{% if next_health_check %}

Next health check: {{ next_health_check }}

{% endif %}
{# ── Notifications ── #}

Notifications

Optional. Overrides the global webhook for this resource.
{# ── Monitoring Requests ── #}

Monitoring Requests

Custom checks Claude will include during discovery and health checks.

{% if resource.monitoring_requests %} {% endif %}
Tell Claude what to check. These are incorporated into the next discovery run.
{# ── Status & Danger Zone ── #}

Monitoring Status

{% if resource.enabled %} Active {% else %} Paused {% endif %}

Danger Zone

Deleting a resource removes all its reports, baselines, and run history.

{% endblock %}