{% extends "sentry/emails/base.html" %} {% load sentry_helpers %} {% load sentry_assets %} {% block head %} {{ block.super }} {% endblock %} {% block header %}

Sentry

Weekly Update for {{ organization.name }}
{{ start }} – {{ end }}
{% endblock %} {% block content %}
{% with height=110 %} {% if has_replay_graph %} {% endif %} {% if trends.total_transaction_count > 0 %} {% else %} {% endif %} {% if has_replay_graph and trends.total_replay_count > 0 %} {% elif has_replay_graph %} {% endif %}

Total Project Errors

{{ trends.total_error_count|small_count:1 }}

{% url 'sentry-organization-issue-list' organization.slug as issue_list %} {% querystring referrer="weekly_report" notification_uuid=notification_uuid as query %} View All Errors {% for timestamp, project_values in trends.series %} {% endfor %} {% for timestamp, project_values in trends.series %} {% endfor %}
{% for project_value in project_values %} {% empty %} {% endfor %}
 
{{ timestamp|date:"D" }}

Total Project Transactions

{{ trends.total_transaction_count|small_count:1 }}

{% url 'sentry-organization-perfomance' organization.slug as performance_landing %} {% querystring referrer="weekly_report_view_all" notification_uuid=notification_uuid as query %} View All Transactions {% for timestamp, project_values in trends.series %} {% endfor %} {% for timestamp, project_values in trends.series %} {% endfor %}
{% for project_value in project_values %} {% empty %} {% endfor %}
 
{{ timestamp|date:"D" }}
Sentry

Something slow?

Trace those 10-second page loads to poor-performing API calls.

{% url 'sentry-organization-performance' organization.slug as performance_landing %} {% querystring referrer="weekly_report_upsell" notification_uuid=notification_uuid as query %} Set Up Performance

Total Project Replays

{{ trends.total_replay_count|small_count:1 }}

{% url 'sentry-organization-replays' organization.slug as replay_landing %} {% querystring referrer="weekly_report_view_all" notification_uuid=notification_uuid as query %} View All Replays {% for timestamp, project_values in trends.series %} {% endfor %} {% for timestamp, project_values in trends.series %} {% endfor %}
{% for project_value in project_values %} {% empty %} {% endfor %}
 
{{ timestamp|date:"D" }}
Sentry

Tricky bug?

Rewind and replay every step of a user’s journey before and after they encounter an issue.

{% url 'sentry-organization-replays' organization.slug as replay_landing %} {% querystring referrer="weekly_report_upsell" notification_uuid=notification_uuid as query %} Set Up Session Replay
{% for project in trends.legend %} {% endfor %}
Project Errors Dropped Transactions Dropped
{% 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 }}
{% 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 %} {% querystring referrer="weekly_report" notification_uuid=notification_uuid as query %} {{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 %}

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 %} {% querystring referrer="weekly_report" notification_uuid=notification_uuid as query %} {{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}}
{% url 'sentry-organization-performance-summary' organization.slug as performance_summary %} {% querystring project=a.project.id transaction=a.name referrer="weekly_report" notification_uuid=notification_uuid as query %} {{a.name}}
{{a.project.name}}
{% if a.p95_prev_week %} {{a.p95_prev_week | duration}} {% endif %} {{a.p95 | duration}}
{% endfor %}
{% endif %} {% if key_replays|length > 0 %}

Most erroneous replays

{% for a in key_replays %}
{{a.count|small_count:1}}
{% url 'sentry-organization-replay-details' organization.slug a.replay.id as replay_details %} {% querystring referrer="weekly_report" notification_uuid=notification_uuid as query %} {{a.id}}
{{a.project.name}}
{{600000 | duration}}
{% endfor %}
{% endif %}
{% endblock %}