I am testing Uberagent in the EU region of my company. There are concerns about privacy and URL's accessed by staff. I have been trying to get filtering working in Uberagent.conf.
I know the file is being read at service restart as the splunk data feed for username is changing depending on how I set EncryptUserNames = False/True
I cannot locate any documentation on the filtering format and cannot get it working. Below is an example I copied from your example, yet I still see the URL in Splunk
############################################
# Optional filter for browser web app metrics (sourcetype uberAgent:Application:BrowserWebRequests2) and the SessionFgBrowserActiveTabHost field of sourcetype uberAgent:Session:SessionDetail
#
# URLs can be whitelisted or blacklisted. Whitelisting overrides blacklisting.
# URLs are specified as regular expressions. Format: origin and path (without query segment), e.g.: "https://uberagent.com/download/".
# Port numbers are stripped from the URL if they match the default port number.
# Matching is case-sensitive.
#
# Format: URL_REGEX = uberAgent_blacklist | uberAgent_whitelist
#
# Examples:
#
# .*\.com/.*$ = uberAgent_whitelist # Whitelist all .com domains
# ^https?://.*\.?vastlimits\.com/.*$ = uberAgent_blacklist
# Blacklist vastlimits.com and subdomains over http or https
#
############################################
[BrowserWebAppURL_Filter]
^https?://.*\.?vastlimits\.com/.*$ = uberAgent_blacklist
############################################