{% extends "base.html" %}
{% block title %}仪表盘 - Squid Manager{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
{% if active_alerts %}
总请求数
{{ stats.total_requests | thousands }}
{{ stats.unique_clients }} 个客户端 · {{ stats.unique_hosts }} 个目标主机
缓存命中率
{{ '%.1f' % (stats.hit_ratio * 100) }}%
命中 {{ stats.hits }} · 未命中 {{ stats.misses }}
总流量
{{ format_bytes(stats.total_bytes) }}
平均 {{ format_bytes(stats.avg_size_bytes) }}/请求
平均响应时间
{{ format_duration(stats.avg_elapsed_ms) }}
总耗时 {{ format_duration(stats.total_elapsed_ms) }}
拒绝率
{{ '%.2f' % (stats.denied_rate * 100) }}%
{{ stats.denied }} 条被 ACL 拒绝
中断率
{{ '%.2f' % (stats.aborted_rate * 100) }}%
{{ stats.aborted }} 条客户端中断
4xx 错误率
{{ '%.2f' % (stats.errors_4xx_rate * 100) }}%
{{ stats.errors_4xx_count }} 条
5xx 错误率
{{ '%.2f' % (stats.errors_5xx_rate * 100) }}%
{{ stats.errors_5xx_count }} 条