{% extends "base.html" %} {% block content %}

System status

Diagnostic view for the running netguard instance.

Catalog

{% if catalog_loaded %}
Rules {{ catalog_total }}
Product families {{ catalog_products|length }}
Source {{ catalog_path }}
{% for p in catalog_products %}{{ p }}{% endfor %}
{% else %}

No catalog loaded. Import one →

{% endif %}

Auto-check registry

Registered checks {{ n_implemented }}
Coverage {{ '%.1f' % (100.0 * n_implemented / catalog_total) if catalog_total else 0 }}% of catalog
List short_ids
{% for sid in registered_short_ids %}{{ sid }}{% endfor %}

Audit state

In-memory audits {{ audits_in_memory }}
In-memory batches {{ batches_in_memory }}
Persisted audits {{ saved_count }} browse →
Disk used {{ saved_disk_kb }} KB
Config dir {{ config_dir }}

System

Hostname {{ hostname }}
Platform {{ host_platform }}
Python {{ python_version }}
netguard {{ version }}

Network posture

netguard binds to 127.0.0.1 only and makes no external network calls except to operator-specified SSH targets via --pull. No telemetry, no phone-home.

{% endblock %}