when using matomo, the reloaded pages are taken into account to count the actions and visits. Is there a way to remove this from the reports (with segment for exemple), without having to change the javascript tags ? Thanks for your help,
1
There are 1 best solutions below
Related Questions in MATOMO
- Matomo install hangs on system install
- How to remove the reloaded pages in matomo segment?
- Matomo(piwik) Configuration in Windows Virtual Machine
- Matomo Instance Goals and Google Ads Conversions's difference
- Matomo Tag Manager and Single Page Application: History Change track old page title
- Fetch Data from Matomo API not working, either CORS errors or "function not found in module API"
- Matomo Disable int Siteid
- How to limit a tag to fire one time per webpage no matter the webpage opened in different browsers or devices in Matomo analytics
- How to properly send array data from GTM to sGTM
- Upgrading PHP version in Matomo on Ubuntu server
- Average search result count in Internal search Piwik Pro
- Keep formating of data in kubernetes secret
- Matomo Analytics with Page Transitions (Barba.js)
- Reverse proxy on Express
- How to list all actions of all visitors segmented by a url parameter?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
While there is no built-in way to remove page reloads from your analytics, there are a few approaches that will allow you to separate analytics from reloads from the others.
The easiest to implement would be to add a parameter to your URL in case your page is reloaded. This can be done with
PerformanceNavigationTiming.type. Here's an example:Then, you create a segment that does not take into account traffic from these URLs.
Another way of doing this would be to only take into account traffic where
Pageviewsis less or equal to1. But this is not optimal, because you wouldn't be able to track people that simply accessed your website multiple times.Which approach you choose will depend on what exactly you want, but, to be blunt, no, there is no built-in way to do that.