{% extends "base.html" %} {% block title %}Server - Supervaizer Admin{% endblock %} {% block content %}

Server Status

Monitor server health and configuration

{% include "server_status_cards.html" %}

Server Configuration

Current server settings and environment

Host
{{ server_config.host }}
Port
{{ server_config.port }}
API Version
{{ server_config.api_version }}
Environment
{{ server_config.environment }}
Database
{{ server_config.database_type }}
Storage Path
{{ server_config.storage_path }}
{% if server_config.agents %}
Agents
{% for agent in server_config.agents %}
{{ agent.name }}
{{ agent.description }}
v{{ agent.version }}
{% endfor %}
{% endif %}
{% endblock %}