Total Project Errors
{{ trends.total_error_count|small_count:1 }}
{% url 'sentry-organization-issue-list' organization.slug as issue_list %}
View All Errors
{% for timestamp, project_values in trends.series %}
{% for project_value in project_values %}
|
{% empty %}
|
{% endfor %}
|
{% endfor %}
{% for timestamp, project_values in trends.series %}
{{ timestamp|date:"D" }}
|
{% endfor %}
|
{% if trends.total_transaction_count > 0 %}
Total Project Transactions
{{ trends.total_transaction_count|small_count:1 }}
{% url 'sentry-organization-perfomance' organization.slug as performance_landing %}
View All Transactions
{% for timestamp, project_values in trends.series %}
{% for project_value in project_values %}
|
{% empty %}
|
{% endfor %}
|
{% endfor %}
{% for timestamp, project_values in trends.series %}
{{ timestamp|date:"D" }}
|
{% endfor %}
|
{% else %}
Something slow?
Trace those 10-second page loads to poor-performing API calls.
{% url 'sentry-organization-performance' organization.slug as performance_landing %}
Set Up Performance
|
{% endif %}