Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-19 18:04:15 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-19 18:04:15 +0400
commit791eef553cfc4ee0895859af232a5e42c1de7fc3 (patch)
tree1f4310597ec013e3bef8816e8c1c22b5ee435d52 /misc/internal-docs
parent4d1bf6dd9bca134ea0894675f21d9b2fb27c5393 (diff)
refs #4996 there is a difference between link tracking enabled and installed. When replacing the initial link urls link tracking might not be installed yet but enabled (will be installed on load event). When a click is happening on a content block we still need to use linkTrackingInstalled since then the credirect/tracking request is actually happening and we need to know whether outlink/download will track it or whether we have to do it separately. Make sure to call enableLinkTracking before trackContentImpressions although there should be no huge difference as both will be delayed until ready/load event anyway
Diffstat (limited to 'misc/internal-docs')
-rw-r--r--misc/internal-docs/content-tracking.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/internal-docs/content-tracking.md b/misc/internal-docs/content-tracking.md
index 3eed70c4a7..cd515062a4 100644
--- a/misc/internal-docs/content-tracking.md
+++ b/misc/internal-docs/content-tracking.md
@@ -449,6 +449,10 @@ Nothing special here I think. We would probably automatically detect the type of
* Add number of content impressions and interaction to each page in getPageUrl(s)
* Add number of total content impresions and interactions to visitor
* ...
+* Increase interval to scan the entire page for content impressions after a while. By default currently is 750ms.
+ * For instance after 2 minutes could be 5 seconds, after 5 minutes could be 30 seconds, after 10 minutes could be 1 minute,
+ after 30 minutes could be every 10 minutes or stop it completely. Otherwise CPU and battery won't be happy when having a website open for a while in the background.
+ * Stop scanning page in case tab is no longer active and start scanning again when tab is visible again
## Open questions