{% extends "base.html" %} {% block content %}

Broker Health

{% if error %}
{{ error }}
{% else %}
Status {{ health.get('status', 'unknown') }}
Version {{ health.get('version', '?') }}
Uptime {{ health.get('uptime', 0) }}s
Database {{ 'Connected' if health.get('db_connected') else 'Disconnected' }}
Audit Events {{ health.get('audit_events_count', 0) }}
{% endif %}

App Scope Ceiling

The maximum scopes this application can grant to agents. Set by the operator at app registration. Each agent gets a subset of this ceiling, typically scoped to a specific patient.

{% for scope in scope_ceiling %} {{ scope }} {% endfor %}

Emergency Revocation

Revoke credentials at four levels: individual token, agent identity, entire task, or delegation chain.

{% endblock %}