Is it possible to get alerts for only large changes to the site (+10 diff)?

the site i monitor makes lots of small changes every day, but i only need the large changes to alert me to.
thanks !

1 Like

Hello @sphangman, following condition can be added to alert you only when 100 or more characters in the text changed.

added text matches regular expression: .{100,}

You can change 100 in the regular expression to change its sensitivity.

thanks for the quick response.

just to confirm , I’m only adding

.{100,}

to the “added text matches regular expression” option , I dont need the “:”

thanks

Yes, that is correct.

1 Like