-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add advanced configuration options for piwik analytics #15
Comments
Lgtm. |
In RocketChat#233 is shortly discussed why RC won't implement all Piwik Config options. Might be a reason for decline the pull request. |
Lessons learned: A piwik website configuration has settings for subdomains. Using this settings makes the commit unnecessary 89df55c @see How do I accurately measure the same visitor across multiple domain names (cross domain linking)? https://piwik.org/faq/how-to/faq_23654/ |
Piwik supports tracking the same website into two different piwik instances. Would be nice if that would be configureable in Rocket.Chat Analytics Admin UI. |
related with #17 |
- Removed unnecessary code for setting a custom tracking url - Make the list of domains editable - Changed comment
#15 - Add advanced configuration options for piwik analytics.
merged and deployed. |
make a pull request to RC core. |
In order to use one Piwik instance for tracking several sub domains, some advanced piwik configuration options have to be set. This kind of configuration should be part of the administration UI of Rocket.Chat.
This issue implements the following options
Prepend the site domain to the page title when tracking
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
Track visitors across all subdomains
_paq.push(["setCookieDomain", "*.your.domain.tld"]);
In the 'Outlinks' report, hide clicks to known alias URLs
_paq.push(["setDomains", ["*.your.domain.tld"]]);
The text was updated successfully, but these errors were encountered: