{% 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 }}
{% 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 %}
|
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 issue_summary.total_substatus_count > 0 %}
Issues Breakdown
|
New ({{ issue_summary.new_substatus_count }})
Escalating ({{ issue_summary.escalating_substatus_count }})
Regressed ({{ issue_summary.regression_substatus_count }})
Ongoing ({{ issue_summary.ongoing_substatus_count }})
|
|
{% 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}}
{% if a.group_substatus and a.group_substatus_color %}
{{a.group_substatus}}
{% else %}
{{a.status}}
{% endif %}
{% endfor %}
{% endif %}
{% if key_performance_issues|length > 0 %}
{% endif %}
{% if key_transactions|length > 0 %}
Most frequent transactions
{% for a in key_transactions %}
{{a.count|small_count:1}}
{% querystring project=a.project.id transaction=a.name referrer="weekly_report" as query %}
{% url 'sentry-organization-performance-summary' organization.slug as performance_summary %}
{{a.name}}
{{a.project.name}}
{% if a.p95_prev_week %}
{{a.p95_prev_week | duration}}

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