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

Sentry

{{ duration.adjective|title }} Update for {{ organization.name }}
{{ interval.start }} – {{ interval.stop }}
{% endblock %} {% block content %}

Events Seen {{ duration.noun|title }}

All: {{ report.series.all|small_count }} Resolved: {{ report.series.resolved|small_count }}
{% with report.series.maximum as max %} {% for timestamp, metrics in report.series.points %} {% endfor %} {% endwith %} {% for timestamp, metrics in report.series.points %} {% endfor %}
{% if metrics.resolved or metrics.unresolved %} {% else %} {% endif %}
 
 
 
{{ timestamp|date:duration.date_format|first }}
{% for label, change in report.comparisons %} {% endfor %}
{% if change %}
{% if change >= 0 %} {% else %} {% endif %} {% with change|multiply:"100"|absolute_value as percentage %} {% if percentage >= 1000 %}{{ percentage|floatformat:"0" }}{% else %}{{ percentage|floatformat:"-1" }}{% endif %}% {% endwith %}
{% if change >= 0 %}more{% else %}less{% endif %} than {{ label }} {% else %} There is not enough data to compare to {{ label }}. {% endif %}
{% with report.distribution.total as total %}

Events by Issue Type

{% for type, count in report.distribution.types %} {{ type.label }}: {% percent count total "0.1f" %}% {% endfor %}
{% for type, count in report.distribution.types %} {% endfor %}
 
{% endwith %}
{% with series=report.projects.series height=110 %}

Events by Project

{% for timestamp, values in series.points %} {% endfor %} {% for timestamp, values in series.points %} {% endfor %}
{% for key, count in values %} {% empty %} {% endfor %}
 
{{ timestamp|date:duration.date_format }}
{% for key in series.legend %} {% endfor %}
Events Project Filtered Rate Limited
  {{ key.data.events|small_count:1 }} {% if key.url %}{% endif %}{{ key.label }}{% if key.url %}{% endif %} {{ key.data.filtered|small_count:1 }} {{ key.data.rate_limited|small_count:1 }}
{% endwith %}
{% if report.calendar %}

3 Month History

Less Events
{% for color in report.calendar.legend %} {% endfor %}
More Events
{% for first_date, weeks in report.calendar.sheets %} {% endfor %}
{{ first_date|date:"F Y" }}
{% for week in weeks %} {% for day, data in week %} {% if day.month == first_date.month %} {% else %} {% endif %} {% endfor %} {% endfor %}
S M T W T F S
   
{% endif %} {% if personal.resolved and personal.users %}

Your impact

{{ personal.resolved|small_count:0 }}
Issue{{ personal.resolved|pluralize }} resolved this week by you.
{{ personal.users|small_count:0 }}
User{{ personal.users|pluralize }} rejoicing because of it.
{% endif %}
{% endblock %}