{% extends "layout.html" %} {% block title %}Observability - Development Harness{% endblock %} {% block content %}

Observability Dashboard

Active Threads

{{ threads|selectattr('status', 'equalto', 'running')|list|length }} running

Observers

Process, Log, Test, Endpoint, Lint, Build, Metrics, Browser

Recent Threads

{% for thread in threads[:10] %}
{{ thread.id[:8] }}... [{{ thread.status }}]

{{ thread.turns|length }} turns | Agent: {{ thread.config.agent_backend }}

{% if thread.turns %}

Last input: {{ thread.turns[-1].user_input[:100] }}...

{% endif %}
{% endfor %}

Observer Status

Observers run automatically during agent turns. View thread details for per-thread observations.

{% endblock %}