posthog/templates/email/error_tracking_weekly_digest.html
{% extends "email/base.html" %} {% load posthog_assets %} {% load posthog_filters %} {% block head %} {% endblock %} {% block preheader %}Error tracking weekly digest for {{ organization.name }} organization{% endblock %} {% block main %}
Error tracking weekly digest for {{ organization.name }} organization
{% for section in project_sections %}
|
|
Total exceptions
{{ section.exception_count|compact_number }}
{% if section.exception_change %}
{{ section.exception_change.long_text }}
{% else %}
{% endif %} {% if section.daily_counts %}
| {% for day in section.daily_counts %}
| {% endfor %} | | | {% for day in section.daily_counts %} {{ day.day }} | {% endfor %}
{% endif %} {% if section.crash_free %}
| Total sessions
{{ section.crash_free.total_sessions|compact_number }} {% if section.crash_free.total_sessions_change %} {{ section.crash_free.total_sessions_change.text }} {% endif %} | Crash free sessions
{{ section.crash_free.crash_free_rate }}% {% if section.crash_free.crash_free_rate_change %} {{ section.crash_free.crash_free_rate_change.text }} {% endif %} |
{% endif %} {% if section.top_issues %}
Issues sorted by occurrence count this week
| Issue | Volume | Occurrences |
|---|---|---|
| {% for issue in section.top_issues %} | [{{ issue.name | truncatechars:40 }}]({{%20issue.url%20}}) {% if issue.description %} |
| {{ issue.description | truncatechars:45 }} | |
| {% endif %} | {% if issue.sparkline %} |
| {% for bar in issue.sparkline %}
| {% endfor %} | |
{% endif %} | {{ issue.occurrence_count|compact_number }} | {% endfor %}
{% endif %} {% if section.new_issues %}
Issues first seen this week sorted by occurrence count
| Issue | Volume | Occurrences |
|---|---|---|
| {% for issue in section.new_issues %} | [{{ issue.name | truncatechars:40 }}]({{%20issue.url%20}}) {% if issue.description %} |
| {{ issue.description | truncatechars:45 }} | |
| {% endif %} | {% if issue.sparkline %} |
| {% for bar in issue.sparkline %}
| {% endfor %} | |
{% endif %} | {{ issue.occurrence_count|compact_number }} | {% endfor %}
{% endif %} {% if section.ingestion_failure_count > 0 %}
⚠ {{ section.ingestion_failure_count|compact_number }} exceptions failed to ingest
This is usually caused by malformed events being sent. You can inspect each failed exception to see what went wrong by expanding it.
| View these exceptionsContact support |
{% endif %} {% endfor %} {% if disabled_project_names or excluded_project_count > 0 %}
|
| Note |
|
{% if disabled_project_names %}
This report did not include the following projects because they are disabled in your settings:
{% for name in disabled_project_names %} - {{ name }} {% endfor %} {% endif %} {% if excluded_project_count > 0 %}
{{ excluded_project_count }} other project{{ excluded_project_count|pluralize }} in your organization had no exceptions this week and {{ excluded_project_count|pluralize:"was,were" }} not included in this digest.
{% endif %} {% endif %} Change notification settings
Share feedback on this digest {% endblock %} {% block footer %}{% endblock %}