{% load i18n prometric_extras %} {% comment %}Sentry's section of the route-detail page. Context: provider, route, period, transactions (RoutePerformance list).{% endcomment %} {% if transactions %}
{% for tx in transactions %} {% endfor %}
{% translate "Transaction" %} {% translate "Requests" %} p50 p75 p95 p99 {% translate "Failure rate" %}
{{ tx.transaction }} {{ tx.requests|num }} {{ tx.p50_ms|ms }} {{ tx.p75_ms|ms }} {{ tx.p95_ms|ms }} {{ tx.p99_ms|ms }} {{ tx.failure_rate|pct }}
{% else %}

{% translate "No Sentry transactions matched this route in the selected period." %}

{% translate "Transactions appear once the route receives traffic while the Sentry SDK's tracing is enabled." %}

{% endif %}