grafana formatter: smaller titles
This commit is contained in:
parent
6c5b3e1358
commit
624a1b2c08
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ def grafana(data, headers):
|
||||||
"""Pretty-print a grafana notification."""
|
"""Pretty-print a grafana notification."""
|
||||||
text = ""
|
text = ""
|
||||||
if "title" in data:
|
if "title" in data:
|
||||||
text = "### " + data["title"] + "\n"
|
text = "#### " + data["title"] + "\n"
|
||||||
if "message" in data:
|
if "message" in data:
|
||||||
text = text + data["message"] + "\n\n"
|
text = text + data["message"] + "\n\n"
|
||||||
if "evalMatches" in data:
|
if "evalMatches" in data:
|
||||||
|
|
|
@ -42,5 +42,5 @@ class GrafanaFormatterTest(unittest.IsolatedAsyncioTestCase):
|
||||||
self.assertEqual(message.sender, FULL_ID)
|
self.assertEqual(message.sender, FULL_ID)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
message.body,
|
message.body,
|
||||||
"### [Alerting] Panel Title alert\nNotification Message\n\n* Count: 1\n",
|
"#### [Alerting] Panel Title alert\nNotification Message\n\n* Count: 1\n",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue