{% extends "base.html" %} {% block title %}API密钥状态 - Gemini Balance{% endblock %} {% block head_extra_styles %} {% endblock %} {% block head_extra_scripts %} {% endblock %} {% block content %}
自动刷新

Gemini Balance Logo Gemini Balance - 监控面板

密钥统计

总计: {{ total_keys }}
{{ total_keys }}
总密钥数
{{ valid_key_count }}
有效密钥
{{ invalid_key_count }}
无效密钥

API调用统计

本月: {{ api_stats.calls_month.total }}
{{ api_stats.calls_1m.total }}
1分钟调用
{{ api_stats.calls_1h.total }}
1小时调用
{{ api_stats.calls_24h.total }}
24小时调用

有效密钥列表 ({{ valid_key_count }})

    {# Initial keys rendered by server-side for non-JS users or initial load #} {# JS will replace this content with paginated/filtered results #} {% if valid_keys %} {% for key, fail_count in valid_keys.items() %}
  • 有效
    {{ key[:4] + '...' + key[-4:] }}
    失败: {{ fail_count }}
  • {% endfor %} {% else %}
  • 暂无有效密钥
  • {% endif %}

无效密钥列表 ({{ invalid_key_count }})

    {# Initial keys rendered by server-side #} {# JS will replace this content with paginated results #} {% if invalid_keys %} {% for key, fail_count in invalid_keys.items() %}
  • 无效
    {{ key[:4] + '...' + key[-4:] }}
    失败: {{ fail_count }}
  • {% endfor %} {% else %}
  • 暂无无效密钥
  • {% endif %}
{% endblock %} {% block body_scripts %} {% endblock %}