{% extends "dashboard/base.html" %} {% block title %}Logs - Cyborg Dashboard{% endblock %} {% block content %}

System Logs

Structured log viewer for recorded events

Level:
Event Type:
Project:
Search:
Showing {{ logs|length }} of {{ logs|length }} logs
ERROR: {{ stats.error }}
WARNING: {{ stats.warning }}
INFO: {{ stats.info }}
Reasoning: {{ stats.reasoning }}
{% for log in logs %}
{{ log.timestamp }} {% if log.level == 'ERROR' %} ERROR {% elif log.level == 'WARNING' %} WARN {% elif log.level == 'INFO' %} INFO {% else %} DEBUG {% endif %} {{ log.logger|replace('cyborg.', '')|truncate(20) }} {{ log.message }} {% if log.event_type %} {{ log.event_type }} {% endif %} {% if log.project_id %} {{ log.project_id[:8] }} {% endif %} {% if log.duration_seconds %} {{ log.duration_seconds }}s {% endif %}
{% if log.extra_data %}
View details
{{ log.extra_data }}
{% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}