{% extends "base.html" %} {% block title %}Monitoring · API Gateway{% endblock %} {% block content %}
| Time (UTC) | Service | Key | User | Endpoint | Request | Status | Latency | Client IP |
|---|---|---|---|---|---|---|---|---|
| {{ log.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} | {{ log.service.name if log.service else "–" }} | {{ log.api_key.name if log.api_key else "–" }} | {{ log.api_key.user.username if log.api_key else "–" }} | {% if log.endpoint %}{{ log.endpoint.path }}{% else %}–{% endif %} |
{{ log.method }} {{ log.path[:50] }} | {{ log.status_code }} | {{ "%.1f" | format(log.latency_ms) }} ms | {{ log.client_ip }} |
| No requests logged yet. | ||||||||