{% extends "base.html" %} {% block title %}流量统计 · SOCKS Manager{% endblock %} {% block content %}
近 30 天流量趋势
用户流量排名
{% for u in users[:10] %} {% endfor %}
用户名入站出站总计流量上限用量
{{ u.username }} {{ u.bytes_in_mb }} MB {{ u.bytes_out_mb }} MB {{ u.total_mb }} MB {% if u.limit_mb %}{{ u.limit_mb }} MB{% else %}不限{% endif %} {% if u.usage_pct is not none %}
{{ "%.0f"|format(u.usage_pct) }}%
{% else %}不限{% endif %}
{% if not users %}
暂无数据
{% endif %}
各实例流量
{% for inst in instances %} {% endfor %}
实例地址入站出站连接数
{{ inst.name }} {{ inst.host }}:{{ inst.port }} {{ inst.bytes_in_mb }} MB {{ inst.bytes_out_mb }} MB {{ inst.total_connections }}
{% if not instances %}
暂无数据
{% endif %}
{% endblock %} {% block extra_script %} {% endblock %}