{% extends "base.html" %} {% block title %}Dashboard — FabledNetMon{% endblock %} {% block content %}

Dashboard

{# ── Summary row ──────────────────────────────────────────────────────────── #}

Hosts

{{ total_hosts }} configured

Manage →

Ping

{% if ping_up + ping_down == 0 %}

Enable ping on a host.

{% else %}
{{ ping_up }}up
{% if ping_down %}
{{ ping_down }}down
{% endif %}
{% endif %}

DNS

{% if dns_ok + dns_fail == 0 %}

Enable DNS on a host.

{% else %}
{{ dns_ok }}ok
{% if dns_fail %}
{{ dns_fail }}failed
{% endif %}
{% endif %}

Alerts

Configure rules →

{# ── Live ping widget ─────────────────────────────────────────────────────── #}

Ping — last 30 probes

Details & settings →
{% endblock %}