Google Analytics - Track Multiple Subdirectories (regex) - regex

I am trying to create a view in Google Analytics to filter out the analytics from multiple subdirectories and all pages in them.
www.example.com/mysite
www.example.com/anothersite
www.example.com/lastsite
This is the regex I have written but when I run it, no results get returned ^/(mysite|anothersite|lastsite)?/*
Any ideas what I am doing wrong?

I was able to find a solution by first adding a trailing slash to the URLs (see: https://www.getelevar.com/how-to/fix-duplicate-url-google-analytics/) and then including a regex pattern of the request URI of ^/(mysite|anothersite|lastsite)/

Related

Excluding a URL With Google Analytics Regex

I am tracking several urls on my website and I want to count only the ones beginning with /espace-debat
Examples :
/espace-debat/debat
/espace-debat/user/random-number
/espace-debat/debats/random-number
I am creating a goal on analytics to exclude all the others urls.
I am thinking about this Regex
^/(?espace-debat)
I don't know how to test it
Have you tried escaping your expression?
^\/(espace-debat)\/?

Jmeter URL patterns to exclude under workbench - not excluding patterns that are giving there

Jmeter URL patterns to exclude under workbench - not excluding patterns that are giving there.
Can we give direct URL's. i have a list of URL that needs to be excluded from the recorded script.
Example:
'safebrowsing.google.com`
'safebrowsing-cache.google.com'
'self-repair.mozilla.org'
i'm giving these directly under patters to exclude. or do i need to give as a regular expression only.
Can someone provide more info whether to use regular expression or direct url can be provided under Requests Filtering in workbench
JMeter uses Perl5-style regular expressions for defining URL patterns to include/exclude so you can filter out all the requests to/from google and mozilla domains by adding the following regular expression to URL Patterns to Exclude input of the HTTP(S) Test Script Recorder:
^((?<google>|mozilla>).)*$
See Excluding Domains From The Load Test article for more details.
If you want any of the patterns to be excluded from recording in the scripts please follow the below pattern and add it in "URL Patterns to Exlcude" it must work.
1. For .html : .*\.html.*
2. For .gif : .*\.gif.* etc

Google analytics replace a single repeating character from URL

I have the below request URI in google analytics
/search?q=text1-text2-text3
/search?q=menu
/search?q=test
/search?q=text23-text21-text22
/search?q=text244-text212
/search?q=Pens
I need to replace the - to a + either by using a advanced filter or a search and replace.
I tried to use \b-\b but the output was wrong. Can someone help me with the regex?

How to set analytics goal for urls consisting of dynamically generated numbers in the url stub?

I have the url as shown below
http://www.somesite.com/icons/898989898998?download=1
I need to configure this url for the goal to find how many hits for this url. Kindly help me out in this.
I tried configuring /icons/\d*?download=1 with regular expression but it is not working.
you need to escape the ?
this matches 898989898998:
/icons/\d*\?download=1

Regex disclude folders in Google Analytics

I have a website with multiple subfolders (e.g. /uk/ /australia/ /canada/ etc.), and also the root website.
In Google Analytics, I would like to use Regex to filter out and disclude the subfolders so I can see the stats of the main domain pages only (without the pages from the /uk/ /australia/ /canada/ subfolders). How can I do this?
Use the following regexp for the pagePath to exclude all subfolders:
^/[^/]+$
To exclude specific subfolders, use this:
^(?!/(uk|australia|canada|etc...))/.*$
(?!RE) is a negative lookahead.