{% if deployment.name and not deployment.is_production %}
{{ deployment.name|upper }}
{% endif %}
Dewey Operator Console

Observability

{{ profile.email }}
Service-local telemetry

API, endpoint, DB, and auth health for this Dewey instance.

These summaries are generated from Dewey-local request and backend activity.

{{ obs_services_payload.status|upper }}
API Families
{{ api_health_payload.families|length }}
Tracked request families
Endpoints
{{ endpoint_health_payload.page.total }}
Route templates in the current window
DB Status
{{ db_health_payload.database.status }}
Latest readiness probe result
Auth Events
{{ auth_health_payload.auth.recent|length }}
Recent auth checks

Published Capability Surface

The endpoints Dewey advertises through `/obs_services`.
Configured deps: {{ obs_services_payload.dependencies.configured_services|length }} Observed deps: {{ obs_services_payload.dependencies.observed_services|length }}
{% for endpoint in obs_services_payload.endpoints %} {% endfor %}
Path Auth Kind
{{ endpoint.path }} {{ endpoint.auth }} {{ endpoint.kind }}

API Rollups

Most active request families.
{% for family in api_health_payload.families %} {% endfor %} {% if not api_health_payload.families %} {% endif %}
Family Requests Errors p95 ms
{{ family.family }} {{ family.request_count }} {{ family.error_count }} {{ family.p95_ms }}
No request traffic captured yet.

Endpoint Rollups

Normalized route-template performance and status counts.
{% for item in endpoint_health_payload["items"] %} {% endfor %} {% if not endpoint_health_payload["items"] %} {% endif %}
Method Route Requests p95 ms 5xx
{{ item.method }} {{ item.route_template }} {{ item.request_count }} {{ item.p95_ms }} {{ item.status_class_counts.get('5xx', 0) }}
No route-level traffic captured yet.

Database

Probe status plus hot and slow operation families.
{{ db_health_payload.database.status }} {% if db_health_payload.database.latest %} Latest: {{ db_health_payload.database.latest.fingerprint }} {% endif %} {% if db_health_payload.database.schema_drift %} Schema drift: {{ db_health_payload.database.schema_drift.status }} {{ db_health_payload.database.schema_drift.summary }} {% endif %} {% for item in db_health_payload.database.slowest %}
{{ item.label }}
p95 {{ item.p95_ms }} ms {{ item.request_count }} calls
{% endfor %}

Auth

Recent auth events for session and bearer access.
Configured: {{ auth_health_payload.auth.cognito_configured }} Sessions supported: {{ auth_health_payload.auth.sessions.supported }} {% for event in auth_health_payload.auth.recent %}
{{ event.status }} via {{ event.mode }}
{{ event.fingerprint }}
{% endfor %} {% if not auth_health_payload.auth.recent %}
No auth events captured yet.
{% endif %}

Local Anomalies

Read-only local anomaly records persisted in TapDB.
Open anomaly view
{% for anomaly in anomalies[:3] %} {{ anomaly.severity }}: {{ anomaly.title }} {% endfor %} {% if not anomalies %} No anomalies recorded yet {% endif %}