API 健康监控
{% if not latest %}
暂无检测记录。请确保 XHS_API_HEALTH_ENABLED=1。
立即检测
{% else %}
{% set healthy = latest|selectattr("status","equalto","healthy")|list|length %} {% set total = latest|length %}
{{ healthy }}/{{ total }} 正常
{% for check in latest %}
{{ check.endpoint }}
{% if check.latency_ms %}
{{ check.latency_ms }}ms
{% endif %} {% if check.status_code %} HTTP {{ check.status_code }}{% endif %}
{% if check.error_message %}
{{ check.error_message }}
{% endif %}
检测时间: {{ check.checked_at }}
{% endfor %}
重新检测
{% endif %}