[sqlwatch_config_check] values returning to default

Hello,

Ive been testing sqlwatch thresholds, and Ive just noticed that somehow the values I set below

UPDATE [dbo].[sqlwatch_config_check]
SET 
    [check_threshold_warning] = '>30',
    [check_threshold_critical] = '>100'
WHERE 
    [check_id] = 348

at some point are being overwritten with the default values? Any information regarding this event would be helpful. Thanks!

nvm found it, had to set the user_modified flag

UPDATE [dbo].[sqlwatch_config_check]
SET 
    [check_threshold_warning] = '>30',
    [check_threshold_critical] = '>100',
    user_modified = 1

1 Like