{% 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 %}
Capacity headline
{% if pool_pct is not none %}
{{ pool_gauge|safe }}
{{ pool_pct }}%
Pool used at peak
{% endif %}
{{ success_gauge|safe }}
{{ success_rate }}%
Success rate
{% if success_rate >= 99.5 %}Pass{% else %}Watch{% endif %}

Mean {{ mean_rps }} RPS · peak {{ peak_rps }} RPS

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 %}.

Mean throughput
{{ mean_rps }} RPS
Across the window
Peak throughput
{{ peak_rps }} RPS
Busiest bucket
Total requests
{{ total_requests|format_number }}
Sampling-corrected
Peak concurrency
{{ peak_conc }}
mean {{ mean_conc }} · p95 {{ p95_conc }}
Throughput over time
Requests per second per bucket (sampling-corrected, inverse-probability weighted).
Requests per second
per time bucket
{{ throughput_svg|safe }}
Capacity SLO compliance
Targets below are proposed bands derived from the dashboard's scale-recommendation thresholds — not signed-off SLOs.
{% for o in slo_table %} {% endfor %}
ObjectiveTargetObservedVerdict
{{ o.objective }}{{ o.target }}{{ o.observed }} {% if o.pass %}Pass{% else %}Watch{% endif %}
Per-endpoint throughput share
One request maps to one transaction here, so TPS is reported as a per-endpoint subset of RPS.
{% for r in rows %} {% endfor %}
EndpointTotalMean TPSPeak TPSTraffic shareErr %
{{ r.endpoint }}{{ r.requests|format_number }} {{ r.mean_tps }}{{ r.peak_tps }}
{{ r.share }}%
{{ r.err_pct }}
Error composition
Errors by HTTP status
{{ error_rate }}% of all requests
{{ error_donut|safe }}
{% for e in error_rows %}
{{ e.label }}{{ e.count|format_number }}
{% else %}
No errors in this window.
{% endfor %}
Concurrency depth
simultaneous in-flight requests
Mean concurrency{{ mean_conc }}
P95 concurrency{{ p95_conc }}
Peak concurrency{{ peak_conc }}
{% endblock %}