You *should* be able to do something like this using regular expressions. For example this will work for Error output matching "Error1" or "Error2" as this regulr expression matches the word "Error" ending in a 1 or a 2.
The trouble arises when the words you want to match are completely different, as Visualcron regex is not fully implemented. For example, you SHOULD be able to do this:
{REGEX(MatchGetGroup,{TASK(Active,StdErr)},(SQLSTATE|login-error),1}
which means match the entire string "SQLSTATE" OR "login-error" but the pipe symbol which means "or" in regular expression syntax is special to VisualCron and this fails to work as expected.
Maybe Support will respond letting us know there is a different non-standard character to use for "or" or to let us know this will be fixed ASAP 🙂
Edited by user
2019-01-30T16:20:30Z
|
Reason: Not specified