{% extends "base.html" %} {% set active_nav = "admin" %} {% block title %}Observability - LSMC Atlas{% endblock %} {% block content %}

Contract Surfaces

/health /obs_services /api_health /endpoint_health /db_health /my_health /auth_health

Service Health

Status: {{ health_payload.status }}
{{ health_payload | tojson(indent=2) }}

Advertised Capabilities

{{ obs_services_payload | tojson(indent=2) }}

API Families

{% if api_health_payload.families %}
{% for item in api_health_payload.families %} {% endfor %}
Family Requests Errors P95 ms
{{ item.family }} {{ item.request_count }} {{ item.error_count }} {{ item.p95_ms }}
{% else %}

No API traffic captured yet.

{% endif %}

Endpoint Rollups

{% if endpoint_health_payload["items"] %}
{% for item in endpoint_health_payload["items"] %} {% endfor %}
Method Route Requests P95 ms
{{ item.method }} {{ item.route_template }} {{ item.request_count }} {{ item.p95_ms }}
{% else %}

No endpoint traffic captured yet.

{% endif %}

Dependency Notes

{% set dependencies = obs_services_payload.get("dependencies", {}) %}

Configured: {% if dependencies.get("configured_services") %} {{ dependencies.get("configured_services") | join(", ") }} {% else %} none {% endif %}

Observed: {% if dependencies.get("observed_services") %} {{ dependencies.get("observed_services") | join(", ") }} {% else %} none captured yet {% endif %}

Session Notes

{% set sessions = auth_health_payload.get("auth", {}).get("sessions", {}) %}

Supported: {{ sessions.get("supported") }}

Recent users: {{ sessions.get("recent_user_count") }}

{{ sessions.get("summary") }}

Schema Drift

{% set drift = db_health_payload.get("database", {}).get("schema_drift", {}) %}

Status: {{ drift.get("status") }}

Checked: {{ drift.get("checked_at") or "not run" }}

{{ drift.get("summary") }}

Database Rollups

{{ db_health_payload | tojson(indent=2) }}

Auth Rollups

{{ auth_health_payload | tojson(indent=2) }}
{% endblock %}