System Overview

Uptime: {% set hours = uptime_seconds // 3600 %}{% set minutes = (uptime_seconds % 3600) // 60 %}{% if hours > 0 %}{{ hours }}h {{ minutes }}m{% else %}{{ minutes }}m {{ uptime_seconds % 60 }}s{% endif %} v{{ version }}
MCP Runtime
{% if mcp_runtime.mounted == 'rust' %}🦀 Rust MCP Core{% else %}🐍 Python MCP Core{% endif %} {{ mcp_runtime.mode | replace('-', ' ') }} {% if mcp_runtime.mode == 'rust-managed' and mcp_runtime.mounted == 'python' %} Shadow / safe fallback {% elif mcp_runtime.mode == 'python-rust-built-disabled' %} Rust build available {% endif %}
Public MCP
{% if mcp_runtime.mounted == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
Session
{% if mcp_runtime.session_core_mode == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
Replay
{% if mcp_runtime.resume_core_mode == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
Live Stream
{% if mcp_runtime.live_stream_core_mode == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
Affinity
{% if mcp_runtime.affinity_core_mode == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
Auth Reuse
{% if mcp_runtime.session_auth_reuse_mode == 'rust' %}🦀 Rust{% else %}🐍 Python{% endif %}
{{ "{:,}".format(total_executions|int) }}
Total Executions
{{ "%.1f"|format(success_rate) }}%
Success Rate
{{ "%.0f"|format(avg_latency_ms) }}ms
Avg Latency
{{ servers_active + tools_active + prompts_active + resources_active }}
Active Entities

Architecture Flow

INPUTS Virtual Servers 🔗 {{ servers_active }}/{{ servers_total }} active GATEWAY ContextForge Middleware (Plugins) {{ plugins_enabled }} / {{ plugins_total }} plugins enabled {% for hook, count in plugins_by_hook.items() %} {% if loop.index <= 4 %} {{ hook[:12] }}: {{ count }} {% endif %} {% endfor %} Auth Rate Limit Metrics INFRASTRUCTURE {{ db_dialect | capitalize }} {% if db_reachable %}Connected{% else %}Disconnected{% endif %} {{ cache_type | capitalize }} {% if cache_type == 'redis' %}{% if redis_reachable %}Connected{% else %}Disconnected{% endif %}{% else %}In-Memory{% endif %} OUTPUTS MCP Servers {{ gateways_active }}/{{ gateways_total }} {% if a2a_enabled %} A2A Agents {{ a2a_active }}/{{ a2a_total }} {% endif %} Tools {{ tools_active }}/{{ tools_total }} Prompts {{ prompts_active }}/{{ prompts_total }} Resources {{ resources_active }}/{{ resources_total }} {% if a2a_enabled %} {% endif %}

Virtual Servers

Composite MCP endpoints

{{ servers_total }}
{{ servers_active }} active

Tools

Registered tool endpoints

{{ tools_total }}
{{ tools_active }} active

Plugins

Middleware extensions

{{ plugins_total }}
{{ plugins_enabled }} enabled