{% extends 'base.html' %} {% block title %}运营面板 - 统计与监控{% endblock %} {% block content %}

统计与监控

返回概览
平台每日总流量(GB)
{% for r in daily_rows %} {% empty %} {% endfor %}
日期GB
{{ r.day }}{{ r.gb }}
暂无数据
本月域名流量 Top 20(GB)
{% for t in top_domains %} {% empty %} {% endfor %}
域名GB
{{ t.domain.name }}{{ t.gb }}
暂无数据
异常域名(根据阈值检测)
阈值:倍率 {{ anomaly_config.multiplier }} ×,窗口 {{ anomaly_config.window_days }} 天,最低 {{ anomaly_config.min_gb }} GB ,调整参数
{% if not anomaly_config.enabled %}
异常检测已关闭,可在系统设置中开启。
{% endif %}
{% for a in anomalies %} {% empty %} {% endfor %}
域名今日GB过去均值GB倍率查看操作
{{ a.domain.name }} {{ a.today_gb }} {{ a.past_avg_gb }} {% if a.ratio %}×{{ a.ratio }}{% else %}-{% endif %} 用户侧详情
{% csrf_token %}
切换套餐 流量赠送
暂无异常域名
{% endblock %}