I would like to suppress down status alerts for any node that has an IP address that ends in ".98". How can I do this in my alert?
If you do not have addresses that contain.98 anywhere else besides the last octet, using this should work
However, if you DO have address with .98 in the middle you may have to convert the "Type of Property to Monitor" dropdown from "Node" to "Custom SQL Alert" and use something like this
WHERE
Nodes.IP_Address NOT LIKE '%.98'
Keep the "contains .98" and add "does not contain 98."
That should show only IP addresses that end in .98