mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-04 21:05:26 +00:00
Update OpsGenie notification template to include failure reason
cc: #1069
This commit is contained in:
parent
f390d6eece
commit
d8d8d280ca
3 changed files with 23 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
@ -40,6 +39,7 @@ class NotifyOpsgenieTestCase(BaseTestCase):
|
|||
self.flip.created = now()
|
||||
self.flip.old_status = "new"
|
||||
self.flip.new_status = status
|
||||
self.flip.reason = "timeout"
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_works(self, mock_post: Mock) -> None:
|
||||
|
@ -52,13 +52,31 @@ class NotifyOpsgenieTestCase(BaseTestCase):
|
|||
|
||||
payload = mock_post.call_args.kwargs["json"]
|
||||
self.assertEqual(payload["alias"], self.check.unique_key)
|
||||
self.assertIn("""The check "Foo" is DOWN.""", payload["message"])
|
||||
self.assertIn(
|
||||
"""The check "Foo" is DOWN (success signal did not arrive """
|
||||
"""on time, grace time passed).""",
|
||||
payload["message"],
|
||||
)
|
||||
|
||||
details = payload["details"]
|
||||
self.assertIn("cloaked", details["Full details"])
|
||||
self.assertEqual(details["Last ping"], "Success, 10 minutes ago")
|
||||
self.assertEqual(details["Total pings"], 112233)
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_handles_reason_fail(self, mock_post: Mock) -> None:
|
||||
self._setup_data(json.dumps({"key": "123", "region": "us"}))
|
||||
mock_post.return_value.status_code = 202
|
||||
|
||||
self.flip.reason = "fail"
|
||||
self.channel.notify(self.flip)
|
||||
|
||||
payload = mock_post.call_args.kwargs["json"]
|
||||
self.assertIn(
|
||||
"""The check "Foo" is DOWN (received a failure signal).""",
|
||||
payload["message"],
|
||||
)
|
||||
|
||||
@patch("hc.api.transports.curl.request", autospec=True)
|
||||
def test_it_handles_oncalendar_schedule(self, mock_post: Mock) -> None:
|
||||
self._setup_data(json.dumps({"key": "123", "region": "us"}))
|
||||
|
|
|
@ -546,7 +546,7 @@ class Opsgenie(HttpTransport):
|
|||
|
||||
headers = {
|
||||
"Content-Type": "application/json",
|
||||
"Authorization": "GenieKey %s" % self.channel.opsgenie.key,
|
||||
"Authorization": f"GenieKey {self.channel.opsgenie.key}",
|
||||
}
|
||||
|
||||
check = flip.owner
|
||||
|
@ -556,7 +556,7 @@ class Opsgenie(HttpTransport):
|
|||
}
|
||||
|
||||
if flip.new_status == "down":
|
||||
ctx = {"check": check, "ping": self.last_ping(flip)}
|
||||
ctx = {"flip": flip, "check": check, "ping": self.last_ping(flip)}
|
||||
payload["tags"] = cast(JSONValue, check.tags_list())
|
||||
payload["message"] = tmpl("opsgenie_message.html", **ctx)
|
||||
payload["description"] = check.desc
|
||||
|
|
|
@ -1 +1 @@
|
|||
The check "{{ check.name_then_code }}" is DOWN.
|
||||
The check "{{ check.name_then_code }}" is DOWN{% if flip.reason %} ({{ flip.reason_long }}){% endif %}.
|
||||
|
|
Loading…
Add table
Reference in a new issue