We are using a Foglight Experience Monitore (FxM) Filter to exlude all of the traffic that does not match our domain name (OurStore). What Regular Expression do we use to filter out all URLs that do not contain our name within them?
For example we want to include:
OurStore.com/shopping
ourstore.com/sign-on
The FxM filter excludes the URLs that _do_ match the RegEx. So you need to use the carrot operator (which means negate). The Regex below matches (i.e. excludes) on any URL that does _not_ contain "ourstore". The expression is also case insensitive.
(?i)^(?!.*OurStore.*).*
© 2021 Quest Software Inc. ALL RIGHTS RESERVED. Feedback Terms of Use Privacy