8bdf07f709
Make Hosts the front-and-center hub. A host now has a real detail page at /hosts/<id> that pulls its facets into one view, instead of management being scattered across a nav-less Host-Agents area and the edit form. - hosts: new GET /hosts/<id> detail route + hosts/detail.html. Shows the monitors summary (ping/DNS status + latency + uptime 24h/7d/30d), an Ansible section (linked target, link/create, run-playbook), and an embedded Agent panel. Hosts list name links here; ansible-link redirects here. - host_agent: GET /plugins/host_agent/panel/<host_id> — a self-contained HTMX fragment embedded into the core hub across the plugin boundary (core never imports plugin models). Shows live agent metrics + Update/Rotate/Remove when installed, or the provisioning path when not: inline "generate managed key" warning, a prompt to link an Ansible target first, then Provision (bootstrap password) / Install (managed key) tied to the host's target scope. Part of milestone 70 (Hosts hub). Phase 2+ will enrich the list, redirect the old fleet/settings pages, and re-taxonomize plugins into capabilities vs integrations. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
157 lines
7.7 KiB
HTML
157 lines
7.7 KiB
HTML
{% extends "base.html" %}
|
|
{% from "_macros.html" import crumbs %}
|
|
{% block title %}{{ host.name }} — Hosts — Steward{% endblock %}
|
|
{% block breadcrumb %}{{ crumbs([("Hosts", "/hosts/"), (host.name, "")]) }}{% endblock %}
|
|
{% block content %}
|
|
|
|
<div style="display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:1.25rem;">
|
|
<div>
|
|
<h1 class="page-title" style="margin-bottom:0.2rem;">{{ host.name }}</h1>
|
|
<div style="color:var(--text-muted);font-size:0.9rem;font-family:ui-monospace,monospace;">
|
|
{{ host.address or "no address — resolves by name" }}
|
|
</div>
|
|
</div>
|
|
<div style="display:flex;gap:0.5rem;align-items:center;">
|
|
<a href="/hosts/{{ host.id }}/edit" class="btn btn-ghost btn-sm">Edit</a>
|
|
{% if session.user_role == 'admin' %}
|
|
<form method="post" action="/hosts/{{ host.id }}/delete" style="margin:0;"
|
|
onsubmit="return confirm('Delete host {{ host.name }}? Monitors and history are removed.');">
|
|
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{# ── Monitors ─────────────────────────────────────────────────────────────── #}
|
|
<div class="card">
|
|
<div style="display:flex;align-items:baseline;justify-content:space-between;margin-bottom:0.75rem;">
|
|
<h3 class="section-title" style="margin-bottom:0;">Monitors</h3>
|
|
<a href="/hosts/{{ host.id }}/edit" class="btn btn-ghost btn-sm" style="font-size:0.78rem;">Configure →</a>
|
|
</div>
|
|
<div style="display:flex;gap:2rem;flex-wrap:wrap;">
|
|
<div>
|
|
<div style="font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.04em;">Ping</div>
|
|
{% if not host.ping_enabled %}
|
|
<div style="color:var(--text-dim);">off</div>
|
|
{% elif ping is none %}
|
|
<div style="color:var(--text-dim);">no data yet</div>
|
|
{% else %}
|
|
<div style="color:{{ 'var(--green)' if ping.status.value == 'up' else 'var(--red)' }};font-weight:600;">
|
|
{{ ping.status.value }}
|
|
</div>
|
|
{% if ping.response_time_ms is not none %}
|
|
<div style="font-size:0.8rem;color:var(--text-muted);">{{ '%.0f'|format(ping.response_time_ms) }} ms</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
<div>
|
|
<div style="font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.04em;">DNS</div>
|
|
{% if not host.dns_enabled %}
|
|
<div style="color:var(--text-dim);">off</div>
|
|
{% elif dns is none %}
|
|
<div style="color:var(--text-dim);">no data yet</div>
|
|
{% else %}
|
|
<div style="color:{{ 'var(--green)' if dns.status.value == 'resolved' else 'var(--red)' }};font-weight:600;">
|
|
{{ dns.status.value }}
|
|
</div>
|
|
{% if dns.resolved_ip %}
|
|
<div style="font-size:0.8rem;color:var(--text-muted);font-family:ui-monospace,monospace;">{{ dns.resolved_ip }}</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
<div>
|
|
<div style="font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.04em;">Uptime</div>
|
|
{% if uptime %}
|
|
<div style="font-size:0.85rem;">
|
|
24h <strong>{{ uptime['24h'] if uptime['24h'] is not none else '—' }}{{ '%' if uptime['24h'] is not none }}</strong>
|
|
· 7d <strong>{{ uptime['7d'] if uptime['7d'] is not none else '—' }}{{ '%' if uptime['7d'] is not none }}</strong>
|
|
· 30d <strong>{{ uptime['30d'] if uptime['30d'] is not none else '—' }}{{ '%' if uptime['30d'] is not none }}</strong>
|
|
</div>
|
|
{% else %}
|
|
<div style="color:var(--text-dim);">—</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{# ── Agent (host_agent plugin fragment, embedded across the plugin boundary) ── #}
|
|
<div hx-get="/plugins/host_agent/panel/{{ host.id }}" hx-trigger="load"
|
|
hx-swap="innerHTML">
|
|
<div class="card"><span style="color:var(--text-muted);font-size:0.85rem;">Loading agent…</span></div>
|
|
</div>
|
|
|
|
{# ── Ansible ──────────────────────────────────────────────────────────────── #}
|
|
<div class="card">
|
|
<h3 class="section-title">Ansible</h3>
|
|
{% if linked_target %}
|
|
<div style="display:flex;align-items:center;gap:1rem;padding:0.6rem 0.75rem;background:var(--bg-elevated);border-radius:4px;margin-bottom:1rem;flex-wrap:wrap;">
|
|
<div style="flex:1;min-width:12rem;">
|
|
<strong>{{ linked_target.name }}</strong>
|
|
<span style="color:var(--text-muted);font-size:0.85rem;margin-left:0.5rem;">{{ linked_target.address }}</span>
|
|
{% if linked_target.groups %}
|
|
<div style="margin-top:0.25rem;">
|
|
{% for grp in linked_target.groups %}
|
|
<span style="font-size:0.78rem;background:var(--bg);border-radius:3px;padding:0.1em 0.4em;margin-right:0.2rem;color:var(--text-muted);">{{ grp.name }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<a href="/ansible/inventory/targets/{{ linked_target.id }}" class="btn btn-ghost btn-sm">Edit target</a>
|
|
<form method="post" action="/hosts/{{ host.id }}/ansible-link" style="margin:0;">
|
|
<input type="hidden" name="action" value="unlink">
|
|
<button type="submit" class="btn btn-ghost btn-sm">Unlink</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% if ansible_sources %}
|
|
<details>
|
|
<summary style="cursor:pointer;font-size:0.85rem;color:var(--text-muted);">Run a playbook against this host</summary>
|
|
<form method="post" action="/hosts/{{ host.id }}/run-playbook" style="margin-top:0.75rem;">
|
|
<div class="form-group">
|
|
<label>Source</label>
|
|
<select name="source_name" required>
|
|
{% for s in ansible_sources %}<option value="{{ s }}">{{ s }}</option>{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Playbook <span style="color:var(--text-muted);font-weight:normal;">(path within source)</span></label>
|
|
<input type="text" name="playbook_path" placeholder="playbooks/site.yml" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Extra vars <span style="color:var(--text-muted);font-weight:normal;">(one key=value per line)</span></label>
|
|
<textarea name="extra_vars" rows="2" style="width:100%;font-family:ui-monospace,monospace;font-size:0.85rem;"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<label style="display:flex;align-items:center;gap:0.5rem;font-weight:normal;">
|
|
<input type="checkbox" name="check"> Dry-run (--check --diff)
|
|
</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-sm">Run playbook</button>
|
|
</form>
|
|
</details>
|
|
{% endif %}
|
|
{% else %}
|
|
<p style="color:var(--text-muted);font-size:0.88rem;margin-bottom:1rem;">
|
|
No Ansible target linked. A target gives this host an SSH connection so Steward can
|
|
run playbooks and provision the agent.
|
|
</p>
|
|
<div style="display:flex;gap:0.75rem;flex-wrap:wrap;align-items:flex-end;">
|
|
{% if linkable_targets %}
|
|
<form method="post" action="/hosts/{{ host.id }}/ansible-link" style="display:flex;gap:0.5rem;align-items:center;">
|
|
<input type="hidden" name="action" value="link">
|
|
<select name="target_id">
|
|
{% for tgt in linkable_targets %}<option value="{{ tgt.id }}">{{ tgt.name }} ({{ tgt.address }})</option>{% endfor %}
|
|
</select>
|
|
<button type="submit" class="btn btn-sm">Link</button>
|
|
</form>
|
|
{% endif %}
|
|
<form method="post" action="/hosts/{{ host.id }}/ansible-link" style="margin:0;">
|
|
<input type="hidden" name="action" value="create">
|
|
<button type="submit" class="btn btn-sm btn-ghost">Create target from this host</button>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|