{% extends "performance/dashboard/base.html" %} {% block title %}Raw Logs · PerfMonitor{% endblock %} {% block page_title %}Raw Logs{% endblock %} {% block content %}

Raw Logs

APIRequestLog + WebSocketEventLog · paginated · filtered · sampled at 10%

APIRequestLog
Raw HTTP samples · amber = slow ≥500ms · red = 5xx
{% for r in raw_api_rows %} {% endfor %}
TimeMethodEndpointStatusResponseDB QueriesDB TimeConcurrent
{{ r.created_at.strftime('%H:%M') }} {{ r.method }} {{ r.endpoint }} {{ r.status_code }} {{ r.response_time_ms }}ms {{ r.db_query_count }} {{ r.db_time_ms }}ms {{ r.concurrent_requests }}
WebSocketEventLog
Raw WS events · connect/disconnect/receive/send
{% for w in raw_ws_rows %} {% endfor %}
TimeConsumerEventDirMsg SizeProc msDuration
{{ w.created_at.strftime('%H:%M') }} {{ w.consumer_name }} {{ w.event_type }} {{ w.direction }} {{ w.message_size_bytes ~ 'B' if w.message_size_bytes else '—' }} {{ w.processing_time_ms ~ 'ms' if w.processing_time_ms else '—' }} {{ (w.connection_duration_ms // 1000) ~ 's' if w.connection_duration_ms else '—' }}
{% endblock %}