You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe
As a system administrator, it's useful to be able to review what notifications have been sent, to whom, and any errors that might occur.
Describe the solution you'd like
A new navigation panel button Notification Log
When clicking this button, the admin should be able to see the most recent notification_event records.
Acceptance Criteria
The user should be able to filter by status (errored, failed, ok)
The user should be able to see the reason for any failed or errored rows
The user should be able to click on a button (or maybe the row?) to navigate to the configuration for that alert
Optional/Nice to have
Nice to have: Specify a time range to return the data for
Nice to have: Filter by Notification Type
Nice to have: Other filters & search options
Describe alternatives you've considered
We might also make a way to see the errors for a particular notification config, perhaps by prefiltering this page???
Additional context
Example SQL Query
SELECT e.updated_at, e.title as message_title, notification_type, error_message, to_address, e.status, nc.title as config_title, nc.kind as notification_type
FROM notification_event e
LEFT JOIN notification_config nc ON nc.id = e.notification_config_id
ORDER BY updated_at DESC
LIMIT 100
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe
As a system administrator, it's useful to be able to review what notifications have been sent, to whom, and any errors that might occur.
Describe the solution you'd like
A new navigation panel button
Notification Log
When clicking this button, the admin should be able to see the most recent
notification_event
records.Acceptance Criteria
Optional/Nice to have
Describe alternatives you've considered
We might also make a way to see the errors for a particular notification config, perhaps by prefiltering this page???
Additional context
Example SQL Query
The text was updated successfully, but these errors were encountered: