I need a regular expression for the Syslog Viewer that will allow me to search for the presence of 2 strings. Basically I want it to be:
IsPresent(String1 AND String2).
If the 2 strings are present in the syslog, then it will tag it.
the docs have the below:
if String1 and 2 are exact, try:String1(\n).*String2
if not:String1.*(\n).*String2.*
or:.*String1.*(\n).*String2.*