🛠️ 运行维护平台
/ 服务监测
🏠 返回首页
{{ user.username }}({{ '管理员' if is_admin else '用户' }})
{% if is_admin %}
⚙️ 目标管理
{% endif %}
🚪 退出
📊 监测目标
{% if is_admin %}
+ 目标管理
{% endif %}
{% if targets %}
{% for t in targets %}
{{ '🖥️' if t.type == 'local' else '🌐' }}
{{ t.name }}
{% if t.built_in %}
内置
{% endif %}
{{ '本机容器' if t.type == 'local' else (t.host ~ ':' ~ t.port ~ ' ' ~ t.username) }}
{% if is_admin %}
⚡ 快速巡检
🔍 全量巡检
{% else %}
⚡ 快速巡检
🔍 全量巡检
{% endif %}
{% endfor %}
{% else %}
📭 暂无监测目标
{% endif %}
📋 最近巡检报告
{% if reports %}
{% for r in reports %}
{{ r.target_name }}
{{ '快速' if r.suite == 'quick' else '全量' }}
✓{{ r.summary.正常 if r.summary else 0 }}
⚠{{ r.summary.警告 if r.summary else 0 }}
✗{{ r.summary.严重 if r.summary else 0 }}
{{ (r.started_at or '')[5:16].replace('T', ' ') }}
查看
{% endfor %}
{% else %}
📭 暂无巡检报告,点击目标卡片开始巡检
{% endif %}