In #63993 Metrics added a custom comparator called OUTSIDE_RANGE, which basically acts as the opposite of BETWEEN. Instead of alerting when a value is >= x && <= y, it alerts when a value is < x || > y.
This can be added to builtInComparators and removed from Metrics' customComparators so that all alert types can make use of it.
In #63993 Metrics added a custom comparator called
OUTSIDE_RANGE, which basically acts as the opposite ofBETWEEN. Instead of alerting when a value is>= x && <= y, it alerts when a value is< x || > y.This can be added to
builtInComparatorsand removed from Metrics'customComparatorsso that all alert types can make use of it.