{% extends "base.html" %} {% block title %}实时日志 - Squid Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if entries %}
{% for e in entries %} {% endfor %}
时间 客户端 结果码 HTTP 方法 大小 耗时 URL 层级
{{ e.timestamp.strftime('%H:%M:%S') if e.timestamp else e.time }} {{ e.client }} {{ e.result_code }} {{ e.http_code or '-' }} {{ e.method }} {{ format_bytes(e.size) }} {{ format_duration(e.elapsed_ms) }} {{ e.url }} {{ e.hier_code }}
{% else %}
📭

暂无日志数据。请确认访问日志路径正确: {{ cfg.access_log_path }}

{% endif %}
{% endblock %}