Matomo

Some of the ASF websites use Matomo to understand what parts of the website are important to our users, what features are most frequently read up on, where users get lost in the documentation, etc. This data allows us to better understand how users use the system, the website, and the docs and where to focus improvements next.

You can look at Matomo here: https://analytics.apache.org/

If you need to learn more about your users, you can ask for a site ID and tracking code at either privacy@apache.org or in the ASF slack channel #privacy-matomo. We enforce cookieless measurements.

A basis tracking code for Matomo looks like this (where <YourSiteId> is replaced by the provided site ID):

<!-- Matomo -->
<script>
  var _paq = window._paq = window._paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  /* We explicitly disable cookie tracking to avoid privacy issues */
  _paq.push(['disableCookies']);
  /* Measure a visit to flink.apache.org and nightlies.apache.org/flink as the same visit */
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//analytics.apache.org/";
    _paq.push(['setTrackerUrl', u+'matomo.php']);
    _paq.push(['setSiteId', '<YourSiteId>']);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<!-- End Matomo Code -->

Details on collected information can be found in the Privacy Policy for public services.

Matomo Details