{% extends "hedge/base.html" %} {% load static %} {% block hedge_page_title %}告警中心{% endblock %} {% block hedge_content %}
{{ stats.total }}
总告警
{{ stats.active }}
未处理
{{ stats.critical }}
严重
{{ stats.high }}
高优先级
{{ stats.resolved }}
已解决
{% for alert in alerts %}
{{ alert.pair_name }} {{ alert.alert_type_display }} {{ alert.severity_display }} {% if alert.is_resolved %} 已解决 {% endif %}
{% if not alert.is_resolved %} {% endif %}
{{ alert.message }}
当前值 {{ alert.current_value }}
阈值 {{ alert.threshold_value }}
优先级 {% if alert.action_priority <= 3 %} P{{ alert.action_priority }} {% elif alert.action_priority <= 7 %} P{{ alert.action_priority }} {% else %} P{{ alert.action_priority }} {% endif %}
告警日期 {{ alert.alert_date }}
{% if alert.action_required %}
建议操作: {{ alert.action_required }}
{% endif %}
{% endfor %}
{% if not alerts %}
暂无告警记录
{% endif %} {% endblock %} {% block hedge_extra_js %} {% endblock %}