{% endif %}
{% 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 %}
{% querystring referrer="weekly_report_view_all" notification_uuid=notification_uuid as query %}
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 %}
{% querystring referrer="weekly_report_upsell" notification_uuid=notification_uuid as query %}
Set Up Performance
|
{% endif %}
{% if has_replay_graph and trends.total_replay_count > 0 %}
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 %}
{% for project_value in project_values %}
|
{% empty %}
|
{% endfor %}
|
{% endfor %}
{% for timestamp, project_values in trends.series %}
{{ timestamp|date:"D" }}
|
{% endfor %}
|
{% elif has_replay_graph %}
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
|
{% endif %}