{% extends "modern/base.html" %} {% block title %}TapDB Metrics - BLOOM LIMS{% endblock %} {% block content %}
DB query latency metrics (TSV, two-week rotation)
| ms | ok | op | table | route | 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) }} |