Compare commits

...

2 Commits

2 changed files with 9 additions and 4 deletions

View File

@ -379,7 +379,8 @@ class NotificationRuleData(object):
pass pass
# We hit the return above if we don't need to notify # We hit the return above if we don't need to notify
meta["matched"] = self.format_matched(message) if "matched" not in meta:
meta["matched"] = self.format_matched(message)
if "aggs" in meta: if "aggs" in meta:
aggs_formatted = self.format_aggs(meta["aggs"]) aggs_formatted = self.format_aggs(meta["aggs"])
if aggs_formatted: if aggs_formatted:
@ -415,9 +416,13 @@ class NotificationRuleData(object):
pass pass
# We hit the return above if we don't need to notify # We hit the return above if we don't need to notify
meta["matched"] = self.format_matched(message) if "matched" not in meta:
meta["matched"] = self.format_matched(message)
if "aggs" in meta: if "aggs" in meta:
meta["format_aggs"] = self.format_aggs(meta["aggs"]) aggs_formatted = self.format_aggs(meta["aggs"])
if aggs_formatted:
meta["matched_aggs"] = aggs_formatted
rule_notify(self.object, index, message, meta) rule_notify(self.object, index, message, meta)
self.store_match(index, message) self.store_match(index, message)
self.ingest_matches_sync(index, message, meta, mode) self.ingest_matches_sync(index, message, meta, mode)

View File

@ -259,7 +259,7 @@
"channel": "{{ row.cells.channel|escapejs }}", "channel": "{{ row.cells.channel|escapejs }}",
"time": "{{ row.cells.time|escapejs }}", "time": "{{ row.cells.time|escapejs }}",
"date": "{{ row.cells.date|escapejs }}", "date": "{{ row.cells.date|escapejs }}",
"index": "{{ params.index }}", "index": "{% if row.cells.index != '—' %}{{row.cells.index}}{% else %}{{ params.index }}{% endif %}",
"type": "{{ row.cells.type }}", "type": "{{ row.cells.type }}",
"mtype": "{{ row.cells.mtype }}", "mtype": "{{ row.cells.mtype }}",
"nick": "{{ row.cells.nick|escapejs }}", "nick": "{{ row.cells.nick|escapejs }}",