{% extends "sentry/emails/base.html" %}
{% load sentry_helpers %}
{% load sentry_assets %}
{% block head %}
{{ block.super }}
{% endblock %}
{% block header %}
{% with height=110 %}
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 }}
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.
Set Up Performance
|
{% endif %}
|
Project |
Errors |
Dropped |
Transactions |
Dropped |
{% for project in trends.legend %}
{% if project.color %} {% endif %}
|
{% if project.url %}{% endif %}{{ project.slug }}{% if project.url %}{% endif %}
|
{{ project.accepted_error_count|small_count:1 }} |
{{ project.dropped_error_count|small_count:1 }} |
{{ project.accepted_transaction_count|small_count:1 }} |
{{ project.dropped_transaction_count|small_count:1 }} |
{% endfor %}
{% endwith %}
{% if issue_summary.all_issue_count > 0 %}
Errors by Issue Type
|
New: {% percent issue_summary.new_issue_count issue_summary.all_issue_count "0.1f" %}%
Reopened: {% percent issue_summary.reopened_issue_count issue_summary.all_issue_count "0.1f" %}%
Existing: {% percent issue_summary.existing_issue_count issue_summary.all_issue_count "0.1f" %}%
|
|
{% endif %}
{%if key_errors|length > 0 %}
Issues with the most errors
{% for a in key_errors %}
{{a.count|small_count:1}}
{% url 'sentry-organization-issue-detail' issue_id=a.group.id organization_slug=organization.slug as issue_detail %}
{{a.group.message}}
{{a.group.project.name}}
{{a.status}}
{% endfor %}
{% endif %}
{%if key_performance_issues|length > 0 %}
Most frequent performance issues
{% for a in key_performance_issues %}
{{a.count|small_count:1}}
{% url 'sentry-organization-issue-detail' issue_id=a.group.id organization_slug=organization.slug as issue_detail %}
{{a.group.message}}
{{a.group.get_type_display}}
{{a.status}}
{% endfor %}
{% endif %}
{%if key_transactions|length > 0 %}
Most frequent transactions
{% for a in key_transactions %}
{{a.count|small_count:1}}
{% if a.p95_prev_week %}
{{a.p95_prev_week | duration}}

{% endif %}
{{a.p95 | duration}}
{% endfor %}
{% endif %}
{% endblock %}