{% extends "base.html" %} {% block title %}Agent{% endblock %} {% block content %}

Agent

Monitor and manage the AI SRE agent

{% include "partials/agent_status.html" %}

Agent Controls

{% if agent_state.status == 'running' %} Running since {{ agent_state.started_at[:16] if agent_state.started_at else 'N/A' }} • {{ agent_state.iterations }} iterations {% else %} Agent is not running {% endif %}

{% if agent_state.status != 'running' %} {% else %} {% endif %}
{% include "partials/agent_config.html" %}

🔍 Manual Analysis

📜 Analysis History

{% include "partials/agent_history.html" %}

📋 Agent Logs

Auto-refreshing
{% include "partials/agent_logs.html" %}
{% endblock %}