{% extends "base.html" %} {% block title %}运行概览 - ProxyAuto Pro{% endblock %} {% block content %} {% if not machines_status %}

暂无节点

请先前往节点管理添加机器

{% else %}

总流量统计

当月流量
下载 加载中...
上传 加载中...
总计 加载中...
当日流量
下载 加载中...
上传 加载中...
总计 加载中...
历史总流量
下载 加载中...
上传 加载中...
总计 加载中...
{% for item in machines_status %} {% set machine = item.machine %} {% set scheduler = item.scheduler %}

{{ machine.name }}

{% if machine.auto_enabled %} 自动 {% endif %}
{{ machine.aws_service|upper }} | {{ machine.aws_region }} {% if machine.cf_record_name %} | {{ machine.cf_record_name }} {% endif %}
当前 IP
{{ machine.current_ip or '未获取' }}
最近更换
{% if machine.last_run_at %} {{ machine.last_run_at.strftime('%m-%d %H:%M:%S') }} {% else %} -- {% endif %}
更换间隔
{{ machine.change_interval_seconds // 60 }} 分钟
当月下载 加载中...
当月上传 加载中...
总流量 加载中...
{% if machine.traffic_alert_enabled %}
已使用 --
{% endif %}
{% if machine.last_run_at %}
{% if machine.last_success %} 上次成功 {% else %} 上次失败 {% endif %}
{% endif %} {% if scheduler.next_run_time and scheduler.running %}
距离下次更换
计算中...
下次更换: {{ scheduler.next_run_time[:19].replace('T', ' ') }}
{% elif not scheduler.running %}
自动更换已暂停
点击"启动"开始
{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}