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

Dashboard

Ping

{% if ping_up + ping_down == 0 %}

Add hosts to begin monitoring.

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

every {{ poll_interval }}s — view all

{% endif %}

DNS

{% if dns_ok + dns_fail == 0 %}

Enable DNS monitoring on a host.

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

Hosts

{{ total_hosts }} configured

Manage →

Alerts

Configure alert rules against any metric.

{% endblock %}