Total Project Errors
{{ series.legend.total.data.accepted_errors|small_count:1 }}
{% url 'sentry-organization-issue-list' organization.slug as issue_list%}
View All Errors
{% for timestamp, values in series.points %}
{% for key, count in values %}
|
{% empty %}
|
{% endfor %}
|
{% endfor %}
{% for timestamp, values in series.points %}
{{ timestamp|date:duration.date_format }}
|
{% endfor %}
|
{% if series.legend.total.data.accepted_transactions > 0 %}
Total Project Transactions
{{ series.legend.total.data.accepted_transactions|small_count:1 }}
View All Transactions
{% for timestamp, values in series.transaction_points %}
{% for key, count in values %}
|
{% empty %}
|
{% endfor %}
|
{% endfor %}
{% for timestamp, values in series.transaction_points %}
{{ timestamp|date:duration.date_format }}
|
{% endfor %}
|
{% else %}
Something slow?
Trace those 10-second page loads to poor-performing API calls.
Set Up Performance
|
{% endif %}