{% extends "service_monitor/base.html" %} {% block title %}监测目标{% endblock %} {% block content %}
📊 监测目标
{% 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 %} {% endblock %} {% block extra_css %} {% endblock %}