Comments
2 comments
-
It's been a month and I haven't heard anything on this. Is there any way to modify what is silenced by the maintenance windows? Other wise they are just not helpful for our environment.
thanks,
-Luke. -
Hi Luke,
Apologies your question didn't get a prompt reply.
You can get a list Alert ID's from:
SELECT * FROM [alert].[Alert_Type]
To see which alerts are included in 'MaintenanceWindow-AlertsToExclude', execute:
SELECT * FROM [RedGateMonitor].[settings].[KeyValuePairs]
Adding an alert ID to the SET should stop alerts being generated for that alert type:
UPDATE [redgate].[settings].[KeyValuePairs]
SET [KeyValue] = '"10","1","5","11","40","16","4","24","12","44","45","41"'
WHERE [KeyName] = 'MaintenanceWindow-AlertsToExclude'
I'd be grateful if you could let me know if that solves the issue.
Thanks
Adam
Add comment
Please sign in to leave a comment.
In v6 or 7 that changed and only certain alerts are now silenced (https://documentation.red-gate.com/display/SM7/List+of+alerts+suspended+during+maintenance+windows).
Is there a way to revert to the old configuration where no alerts are sent during a maintenance window, or a custom list of alerts could be silenced? The only way we have to do this is to suspend monitoring during the maintenance time-frame which means we lose data that may be helpful.
Thanks,
-Luke.