I'm trying to get the regular expression to work in a log monitoring item. It works fine for a simple pattern - ERROR: . I want to make it work for a regular expression that has alternate patterns - ERROR:|Error: .
I have tried: ERROR:|Error: and ERROR:\|Error: . Both options don't work; passes the syntax check, but gets errors in the server log when running.
Is there a specification for the regular expression to be used here?
I have tried: ERROR:|Error: and ERROR:\|Error: . Both options don't work; passes the syntax check, but gets errors in the server log when running.
Is there a specification for the regular expression to be used here?
Comment