Looking to add keywords that i dont want to be alerted on if they’re found in the search.
EG “Loading…” and " “0 Results”
Looking to add keywords that i dont want to be alerted on if they’re found in the search.
EG “Loading…” and " “0 Results”
sure, you can use the condition text does not contain <phrase>
to mute such changes.
check out https://distill.io/docs/web-monitor/using-conditions-to-get-alert-on-important-changes/#how-to-find-out-which-condition-triggered-the-alert. you will be able to see the conditions that were true.
do you need to get an alert only if all three conditions are true and not when any one of them is false? currently they are setup so that it will trigger an alert if any one of them is true. if yes, consider using the “And” button to add new conditions instead of using the “Or” button.
thanks I did try to look through that but couldnt make much sense of it
I dont want to be alerted when it finds any of those phrases
No alerts if it finds “Loading…” or if it finds “Platinum” or “0No results”
thanks I did try to look through that but couldnt make much sense of it
the notification status show why the condition evaluated to a value for a change. you will notice that at least one of the conditions when an alert is triggered.
in your case, the condition should evaluate to false when any of the three phrases is present in the text. if the three phrases were “alice”, “bob” and “cat”, the condition can be rephrased as:
text doesn’t contain alice and
text doesn’t contain bob and
text doesn’t contain cat`
so, make sure to use the + And
button to add conditions when all conditions must be true to trigger the alert.