{% extends "base.html" %} {% block title %}调用日志{% endblock %} {% block content %}

API 调用日志

{{ form.api_id.label(class="form-label") }} {{ form.api_id(class="form-select") }}
{{ form.success.label(class="form-label") }} {{ form.success(class="form-select") }}
{{ form.start_date.label(class="form-label") }} {{ form.start_date(class="form-control", placeholder="YYYY-MM-DD") }}
{{ form.end_date.label(class="form-label") }} {{ form.end_date(class="form-control", placeholder="YYYY-MM-DD") }}
{% for log in logs %} {% else %} {% endfor %}
API 请求时间 状态 HTTP 耗时(ms) 错误
{{ log.api.name }} {{ log.request_time|to_cst }} {% if log.success is none %} 进行中 {% elif log.success %} 成功 {% else %} 失败 {% endif %} {{ log.http_status_code if log.http_status_code is not none else '-' }} {{ log.duration_ms if log.duration_ms is not none else '-' }} {{ log.error_message or '' }} 详情
暂无日志
{% if pagination.pages > 1 %} {% endif %} {% endblock %}