-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(alerts): Improve alert evaluation failure message
- Loading branch information
1 parent
75e28ba
commit 6cf92c6
Showing
4 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{% extends "email/base.html" %} {% load posthog_assets %} {% block section %} | ||
<p> | ||
The <a href="{% absolute_uri alert_url %}">{{ alert_name }}</a> alert failed to evaluate for insight <a | ||
href="{% absolute_uri insight_url %}">{{ insight_name }}</> with the following error: | ||
</p> | ||
<p><i>{{ alert_error }}</i></p> | ||
<div class="mb mt text-center"> | ||
<a class="button" href="{% absolute_uri alert_url %}">Manage alert</a> | ||
</div> | ||
{% endblock %}{% load posthog_filters %} |