0
0
Fork 0
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: 
This commit is contained in:
Pēteris Caune 2024-12-17 15:22:19 +02:00
parent fa2c3732cc
commit dcc5d7a7c4
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
3 changed files with 15 additions and 5 deletions

View file

@ -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:

View file

@ -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 = {

View file

@ -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 %}