mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-04 21:05:26 +00:00
Update Gotify notification template to include failure reason
cc: #1069
This commit is contained in:
parent
fa2c3732cc
commit
dcc5d7a7c4
3 changed files with 15 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
@ -38,6 +37,7 @@ class NotifyGotidyTestCase(BaseTestCase):
|
|||
self.flip.created = now()
|
||||
self.flip.old_status = "new"
|
||||
self.flip.new_status = "down"
|
||||
self.flip.reason = "timeout"
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_works(self, mock_post: Mock) -> None:
|
||||
|
@ -52,7 +52,17 @@ class NotifyGotidyTestCase(BaseTestCase):
|
|||
payload = mock_post.call_args.kwargs["json"]
|
||||
self.assertEqual(payload["title"], "Foo is DOWN")
|
||||
self.assertIn(self.check.cloaked_url(), payload["message"])
|
||||
self.assertIn("Last ping was 10 minutes ago.", payload["message"])
|
||||
self.assertIn("grace time passed", payload["message"])
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_handles_reason_fail(self, mock_post: Mock) -> None:
|
||||
mock_post.return_value.status_code = 200
|
||||
|
||||
self.flip.reason = "fail"
|
||||
self.channel.notify(self.flip)
|
||||
|
||||
payload = mock_post.call_args.kwargs["json"]
|
||||
self.assertIn("received a failure signal", payload["message"])
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_handles_subpath(self, mock_post: Mock) -> None:
|
||||
|
|
|
@ -1565,9 +1565,9 @@ class Gotify(HttpTransport):
|
|||
url += "?" + urlencode({"token": self.channel.gotify.token})
|
||||
|
||||
ctx = {
|
||||
"flip": flip,
|
||||
"check": flip.owner,
|
||||
"status": flip.new_status,
|
||||
"ping": self.last_ping(flip),
|
||||
"down_checks": self.down_checks(flip.owner),
|
||||
}
|
||||
payload = {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% load humanize linemode %}{% linemode %}
|
||||
{% if status == "down" %}
|
||||
{% line %}🔴 The check [{{ check.name_then_code }}]({{ check.cloaked_url }}) is **DOWN**.{% if ping %} Last ping was {{ ping.created|naturaltime }}.{% endif %}{% endline %}
|
||||
{% line %}🔴 The check [{{ check.name_then_code }}]({{ check.cloaked_url }}) is **DOWN**{% if flip.reason %} ({{ flip.reason_long }}){% endif %}.{% endline %}
|
||||
{% else %}
|
||||
{% line %}🟢 The check [{{ check.name_then_code }}]({{ check.cloaked_url }}) is now **UP**.{% endline %}
|
||||
{% endif %}
|
||||
|
@ -20,4 +20,4 @@
|
|||
{% line %}All the other checks are up.{% endline %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endlinemode %}
|
||||
{% endlinemode %}
|
||||
|
|
Loading…
Add table
Reference in a new issue