35f658b573
Collapse the three former check types into a single core `Monitor` entity
with one management surface (/monitors), one result table (monitor_results),
and a single scheduled task. Every type can now watch a free-standing custom
destination (optional host_id) — not just a registered Host.
- models: Monitor + MonitorResult replace PingResult/DnsResult; Host loses its
ping/dns facet columns (now Monitor rows linked by host_id).
- checks: monitors/{ping,dns,http}.py pure probes + runner.run_monitor
dispatcher; one monitor_check scheduler with a per-monitor due-filter.
- status: single monitor_status_source replaces the three sources.
- UI: /monitors blueprint (type-aware add/edit/list/widget); host hub shows a
host's linked monitors + "add monitor for this host"; nav + widget registry
+ alert metric catalog rewired. http plugin folded into core and removed.
- migration 0022 merges the http branch, data-migrates host facets +
http_monitors + all three result histories, drops the old tables/columns.
Resolves the per-host ping/dns auto-attach issue (#275): monitors are now
explicit, never auto-added to every host.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016Jg27rgypiW2efULXJDtMC
31 lines
1.6 KiB
HTML
31 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% from "_macros.html" import crumbs %}
|
|
{% block title %}{% if host %}Edit Host{% else %}New Host{% endif %} — Steward{% endblock %}
|
|
{% block breadcrumb %}{{ crumbs([("Hosts", "/hosts/"), (("Edit " ~ host.name) if host else "New host", "")]) }}{% endblock %}
|
|
{% block content %}
|
|
<div style="max-width:560px;margin:2rem auto;">
|
|
<h1 class="page-title">{% if host %}Edit Host{% else %}Add Host{% endif %}</h1>
|
|
<div class="card">
|
|
<form method="post" action="{% if host %}/hosts/{{ host.id }}{% else %}/hosts/{% endif %}">
|
|
<div class="form-group">
|
|
<label>Display Name</label>
|
|
<input type="text" name="name" value="{{ host.name if host else '' }}" required autofocus>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Address (hostname or IP)</label>
|
|
<input type="text" name="address" value="{{ host.address if host else '' }}" required>
|
|
</div>
|
|
<div style="display:flex;gap:1rem;margin-top:1.5rem;">
|
|
<button type="submit" class="btn">{% if host %}Save{% else %}Add Host{% endif %}</button>
|
|
<a href="{% if host %}/hosts/{{ host.id }}{% else %}/hosts/{% endif %}" class="btn btn-ghost">Cancel</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<p style="color:var(--text-muted);font-size:0.82rem;margin-top:1rem;text-align:center;">
|
|
{% if host %}Monitors, agent, Ansible target, and playbook runs live on the
|
|
<a href="/hosts/{{ host.id }}">host page</a>.{% else %}
|
|
After adding, attach ping / DNS / HTTP monitors from the host page.{% endif %}
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|