This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Log Viewer - RegEx Assistance

It's been a while since I've used RegEx and I'm out of practice, so hopefully someone can help.  Here are the two message strings that I'm trying to match for an SNMP Trap from a APC:
           Near overload on bank
           Overload of bank
When I get a match, SolarWinds applies a certain tag to the message.  The problem is that every variation I've used attaches both tags to the same message.  It's seeing the word Overload which is confusing the code.
 
s-bolyard_0-1586960301109.jpeg
 
Here's what I've tried:
\bNear overload on bank\b
\bOverload on bank\b
 
\bNear [o]verload on bank\b
\b[O]verload on bank\b
 
\Near overload on bank\
\Overload on bank\
 
\"Near overload on bank\"
\"Overload on bank\"
 
I've tested the code on two different RegEx tools and they work fine. Not sure why it's not working within the Log Viewer configuration page.