Alert Notification Properties
Notifications from Alerts (including template-based HTML Email) can include the following fields:
Property | Contains | Example (JSON syntax) |
---|---|---|
| The |
|
| The id of the alert that triggered the notification |
|
| The Seq username of the user who owns the alert, or |
|
| The Seq query that generated the alert |
|
| A human-readable description of the signal applied to the underlying data |
|
| The window over which the alert is measured, as a string |
|
| The title of the alert, as defined on the dashboard |
|
| A link to the alert itself in Seq |
|
| An array of errors that occurred when checking the alert |
|
| The title of the alert, prefixed with the owner's username if the alert is persona. |
|
| A table of events contributing to this notification | See Contributing Events below |
| The (exclusive) end of the range over which the alert was checked when the notification was triggered |
|
| The (inclusive) start of the range over which the alert was checked when the notification was triggered |
|
| The results that triggered the notification | See Results below |
| A link to Seq where the results can be inspected |
|
| The datetime until which the alert is suppressed |
|
Contributing events
Contributing events, if included in the notification, are a table represented as an array of arrays.
The first row describes the columns of the table.
"Source": {
"ContributingEvents": [
["@Id", "ToIsoString(@Timestamp)", "Message"],
["event-123", "2021-10-28T12:34:56.789", "Unhandled exception"],
["event-456", "2021-10-28T12:34:57.890", "An operation timed out"]
],
Results
The results property is a table represented as an array of arrays.
The first row describes the columns of the table.
"Source": {
"Results": [
["time", "Application", "count"],
["2021-10-28T12:34:56.789", "Cafe", 7],
["2021-10-28T12:34:57.890", "Warehousing", 11]
],
Notification properties
Properties that are explicitly added to the alert's notification properties are included at the root of the notification payload.
Updated 12 days ago