{% extends "base.html" %} {% block title %}Dashboard — AIRiskGuard Gateway{% endblock %} {% block content %}

Dashboard

Last 30 days · auto-refreshes every 60s

● Live
{% include "cost_cards.html" %}

Spend by Model last 30 days

{% if cost_data.by_model %}
{% for row in cost_data.by_model %}
{{ row.model[:40] }}
${{ "%.4f"|format(row.cost_usd) }} {{ row.requests }} req
{% endfor %}
{% else %}

No cost data yet — make some AI API calls through the gateway.

{% endif %}

Recent Events

{% include "violations.html" %}
{% endblock %}