Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×We are currently evaluating the Atlassian Cloud Plugin "Google Analytics, Matomo & others" (https://marketplace.atlassian.com/apps/1218022/google-analytics-matomo-others?hosting=cloud&tab=support) – and as our existing on-prem system is using Matomo/Google Analytics for some time, I stumbled over this plugin.
I have two questions regarding the plugin:
The support email address for this plugin (as well as for all other Atlas Inc. plugins) gives currently back errors when sending a mail, so asking the community is my last possibility.
Maybe some of you got this up running - or has a valid support address as the one from the Atlassian Marketplace (support@atlasinc.ovh) gives currently back mail delivery errors.
br
Martin
Hello,
Atlas Inc. vendor ower here.
Indeed look like there is a problem with email (support@atlasinc.ovh).
It should be possible to send page title and url to your instance with custom code.
On Monday:
Sorry for inconvenience and thank you for bringing this to my attention.
Best,
Krzysztof Bogdan
Hello @Martin Podhovnik 👋
Here is example how I would send url & page title:
(You have to fill PIWIK_TRACKER_URL and SITE_ID)
<script type="text/javascript">
(function () {
AP.getLocation(function (location) {
pageTitle(function (title) {
window._paq = window._paq || [];
_paq.push(['trackPageView']);
(function() {
var u="${PIWIK_TRACKER_URL}";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '${SITE_ID}']);
_paq.push(['setCustomUrl', location]);
_paq.push(['setPageTitle', title]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
});
});
function context(cb) {
return AP.context.getContext(cb);
}
function pageId(cb) {
return context(function (context) {
cb(context.confluence.content.id);
});
}
function pageTitle(cb) {
return pageId(function (pageId) {
return apReq('/rest/api/content/' + pageId, {
success: function (responseText) {
const page = JSON.parse(responseText);
cb(page.title);
}
})
});
}
function apReq(url, opts) {
return AP.request(url, opts);
}
})();
</script>
Best,
Krzysztof Bogdan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Martin Podhovnik ,
Thank you for bringing this to our attention, I have brought this up with our Marketplace team who have flagged this and are digging into the details more in the background and they have reached out to the vendor via the contact details they have for the vendors support account on record to see if we can get a response on the changes, but at this point, we will need to wait a bit for a response but we will keep you posted.
Regards,
Earl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm afraid it looks like the vendor has ceased trading.
I would give up on their apps and look for another that is still in business.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.