I'm trying to write an alert that will notify me any time any nodes go down, except a certain group of servers, all of which are named with a similar prefix based on their region.
My alert works fine if I only include one prefix in the condition, like such:
Trigger Alert when all of the following apply:
Node Status is not equal to Up
Trigger Alert when none of the following apply:
Node Name contains PREFIX_EAST
If I run that, it works fine. I'm emailed about nodes that are down that are not named PREFIX_EAST_1 and so on. However, if I add another condition like so:
Trigger Alert when all of the following apply:
Node Status is not equal to Up
Trigger Alert when none of the following apply:
Node Name contains PREFIX_EAST
Node Name contains PREFIX_WEST
The alert starts to notify me of everything, including things like PREFIX_EAST_1 which it didn't before. Anyone run into anything similar?