{% extends "_base.html" %} {% block accent %}#0d9488{% endblock %} {% block subtitle %}Requests/transactions per second, concurrency headroom and the endpoint most likely to hit the ceiling first — sampling-corrected.{% endblock %} {% block body %} {% set max_share = (rows|map(attribute='share')|max) or 1 %}
The service handled {{ total_requests|format_number }} requests this window at a {{ peak_rps }} RPS peak. Peak concurrency reached {{ peak_conc }} simultaneous in-flight requests{% if pool_pct is not none %} ({{ pool_pct }}% of the {{ pool_size }}-slot pool){% endif %}.
| Objective | Target | Observed | Verdict |
|---|---|---|---|
| {{ o.objective }} | {{ o.target }} | {{ o.observed }} | {% if o.pass %}Pass{% else %}Watch{% endif %} |
| Endpoint | Total | Mean TPS | Peak TPS | Traffic share | Err % |
|---|---|---|---|---|---|
{{ r.endpoint }} | {{ r.requests|format_number }} | {{ r.mean_tps }} | {{ r.peak_tps }} | {{ r.share }}% |
{{ r.err_pct }} |
| Mean concurrency | {{ mean_conc }} |
| P95 concurrency | {{ p95_conc }} |
| Peak concurrency | {{ peak_conc }} |