{% extends "base.html" %} {% block title %}Access log — Waikiki{% endblock %} {% block content %}

Access log

Every request received and call made — the web app and the MCP server — plus Python errors, with duration. Newest first. Kept {{ retention_hours }}h (change in Settings → Logging). Slow calls (≥3s) are highlighted — a good first stop for the Cowork timeout.

{% if not entries %}

No log entries {{ 'match that filter' if q or kind else 'yet' }}.

{% endif %}
{% for e in entries %} {% endfor %}
TimeKindStatusmsRequestDetail
{{ e.ts }} {{ e.kind }} {{ e.status }} {{ e.ms }} {{ e.request }} {{ e.detail }}
{% endblock %}