{% extends "base.html" %} {% block title %}TAPDB Admin - Metrics{% endblock %} {% block content %}
{{ "yes" if metrics_enabled else "no" }}{{ period_start_utc }}{{ metrics_file }}{{ dropped_count }}| ms | ok | op | table | path | user | error | ts |
|---|---|---|---|---|---|---|---|
| {{ "%.3f"|format(row.duration_ms) }} | {{ "1" if row.ok else "0" }} | {{ row.op }} | {{ row.table_hint }} | {{ row.method }} {{ row.path }} | {{ row.username }} | {{ row.error_type }} | {{ row.ts_utc }} |
| route | count | p95 ms | max ms |
|---|---|---|---|
| {{ row.path }} | {{ row.count }} | {{ "%.3f"|format(row.p95_ms) }} | {{ "%.3f"|format(row.max_ms) }} |
| table | count | p95 ms | max ms |
|---|---|---|---|
| {{ row.table_hint }} | {{ row.count }} | {{ "%.3f"|format(row.p95_ms) }} | {{ "%.3f"|format(row.max_ms) }} |